home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2007 December / PCWKCD1207B.iso / Blogowanie poza sfera / Flock 1.0 beta / flock-1.0RC3.en-US.win32.exe / flock / components / nsExtensionManager.js < prev    next >
Text File  |  2007-10-18  |  327KB  |  8,571 lines

  1. /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
  2. /* ***** BEGIN LICENSE BLOCK *****
  3.  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  4.  *
  5.  * The contents of this file are subject to the Mozilla Public License Version
  6.  * 1.1 (the "License"); you may not use this file except in compliance with
  7.  * the License. You may obtain a copy of the License at
  8.  * http://www.mozilla.org/MPL/
  9.  *
  10.  * Software distributed under the License is distributed on an "AS IS" basis,
  11.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  12.  * for the specific language governing rights and limitations under the
  13.  * License.
  14.  *
  15.  * The Original Code is the Extension Manager.
  16.  *
  17.  * The Initial Developer of the Original Code is Ben Goodger.
  18.  * Portions created by the Initial Developer are Copyright (C) 2004
  19.  * the Initial Developer. All Rights Reserved.
  20.  *
  21.  * Contributor(s):
  22.  *  Ben Goodger <ben@mozilla.org> (Google Inc.)
  23.  *  Benjamin Smedberg <benjamin@smedbergs.us>
  24.  *  Jens Bannmann <jens.b@web.de>
  25.  *  Robert Strong <robert.bugzilla@gmail.com>
  26.  *  Dave Townsend <dave.townsend@blueprintit.co.uk>
  27.  *  Daniel Veditz <dveditz@mozilla.com>
  28.  *
  29.  * Alternatively, the contents of this file may be used under the terms of
  30.  * either the GNU General Public License Version 2 or later (the "GPL"), or
  31.  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  32.  * in which case the provisions of the GPL or the LGPL are applicable instead
  33.  * of those above. If you wish to allow use of your version of this file only
  34.  * under the terms of either the GPL or the LGPL, and not to allow others to
  35.  * use your version of this file under the terms of the MPL, indicate your
  36.  * decision by deleting the provisions above and replace them with the notice
  37.  * and other provisions required by the GPL or the LGPL. If you do not delete
  38.  * the provisions above, a recipient may use your version of this file under
  39.  * the terms of any one of the MPL, the GPL or the LGPL.
  40.  *
  41.  * ***** END LICENSE BLOCK ***** */
  42.  
  43. //
  44. // TODO:
  45. // - better logging
  46. //
  47.  
  48. const nsIExtensionManager             = Components.interfaces.nsIExtensionManager;
  49. const nsIAddonUpdateCheckListener     = Components.interfaces.nsIAddonUpdateCheckListener;
  50. const nsIUpdateItem                   = Components.interfaces.nsIUpdateItem;
  51. const nsILocalFile                    = Components.interfaces.nsILocalFile;
  52. const nsILineInputStream              = Components.interfaces.nsILineInputStream;
  53. const nsIInstallLocation              = Components.interfaces.nsIInstallLocation;
  54. const nsIURL                          = Components.interfaces.nsIURL
  55. // XXXrstrong calling hasMoreElements on a nsIDirectoryEnumerator after
  56. // it has been removed will cause a crash on Mac OS X - bug 292823
  57. const nsIDirectoryEnumerator          = Components.interfaces.nsIDirectoryEnumerator;
  58.  
  59. const PREF_EM_CHECK_COMPATIBILITY     = "extensions.checkCompatibility";
  60. const PREF_EM_LAST_APP_VERSION        = "extensions.lastAppVersion";
  61. const PREF_UPDATE_COUNT               = "extensions.update.count";
  62. const PREF_UPDATE_DEFAULT_URL         = "extensions.update.url";
  63. const PREF_EM_IGNOREMTIMECHANGES      = "extensions.ignoreMTimeChanges";
  64. const PREF_EM_DISABLEDOBSOLETE        = "extensions.disabledObsolete";
  65. const PREF_EM_LAST_SELECTED_SKIN      = "extensions.lastSelectedSkin";
  66. const PREF_EM_EXTENSION_FORMAT        = "extensions.%UUID%.";
  67. const PREF_EM_ITEM_UPDATE_ENABLED     = "extensions.%UUID%.update.enabled";
  68. const PREF_EM_UPDATE_ENABLED          = "extensions.update.enabled";
  69. const PREF_EM_ITEM_UPDATE_URL         = "extensions.%UUID%.update.url";
  70. const PREF_EM_DSS_ENABLED             = "extensions.dss.enabled";
  71. const PREF_DSS_SWITCHPENDING          = "extensions.dss.switchPending";
  72. const PREF_DSS_SKIN_TO_SELECT         = "extensions.lastSelectedSkin";
  73. const PREF_GENERAL_SKINS_SELECTEDSKIN = "general.skins.selectedSkin";
  74. const PREF_EM_LOGGING_ENABLED         = "extensions.logging.enabled";
  75. const PREF_EM_UPDATE_INTERVAL         = "extensions.update.interval";
  76. const PREF_BLOCKLIST_URL              = "extensions.blocklist.url";
  77. const PREF_BLOCKLIST_DETAILS_URL      = "extensions.blocklist.detailsURL";
  78. const PREF_BLOCKLIST_ENABLED          = "extensions.blocklist.enabled";
  79. const PREF_BLOCKLIST_INTERVAL         = "extensions.blocklist.interval";
  80. const PREF_UPDATE_NOTIFYUSER          = "extensions.update.notifyUser";
  81.  
  82. const DIR_EXTENSIONS                  = "extensions";
  83. const DIR_CHROME                      = "chrome";
  84. const DIR_STAGE                       = "staged-xpis";
  85. const FILE_EXTENSIONS                 = "extensions.rdf";
  86. const FILE_EXTENSION_MANIFEST         = "extensions.ini";
  87. const FILE_EXTENSIONS_STARTUP_CACHE   = "extensions.cache";
  88. const FILE_AUTOREG                    = ".autoreg";
  89. const FILE_INSTALL_MANIFEST           = "install.rdf";
  90. const FILE_CONTENTS_MANIFEST          = "contents.rdf";
  91. const FILE_CHROME_MANIFEST            = "chrome.manifest";
  92. const FILE_BLOCKLIST                  = "blocklist.xml";
  93.  
  94. const UNKNOWN_XPCOM_ABI               = "unknownABI";
  95.  
  96. const FILE_LOGFILE                    = "extensionmanager.log";
  97.  
  98. const FILE_DEFAULT_THEME_JAR          = "classic.jar";
  99. const TOOLKIT_ID                      = "toolkit@mozilla.org"
  100.  
  101. const KEY_PROFILEDIR                  = "ProfD";
  102. const KEY_PROFILEDS                   = "ProfDS";
  103. const KEY_APPDIR                      = "XCurProcD";
  104. const KEY_TEMPDIR                     = "TmpD";
  105.  
  106. const EM_ACTION_REQUESTED_TOPIC       = "em-action-requested";
  107. const EM_ITEM_INSTALLED               = "item-installed";
  108. const EM_ITEM_UPGRADED                = "item-upgraded";
  109. const EM_ITEM_UNINSTALLED             = "item-uninstalled";
  110. const EM_ITEM_ENABLED                 = "item-enabled";
  111. const EM_ITEM_DISABLED                = "item-disabled";
  112. const EM_ITEM_CANCEL                  = "item-cancel-action";
  113.  
  114. const OP_NONE                         = "";
  115. const OP_NEEDS_INSTALL                = "needs-install";
  116. const OP_NEEDS_UPGRADE                = "needs-upgrade";
  117. const OP_NEEDS_UNINSTALL              = "needs-uninstall";
  118. const OP_NEEDS_ENABLE                 = "needs-enable";
  119. const OP_NEEDS_DISABLE                = "needs-disable";
  120.  
  121. const KEY_APP_PROFILE                 = "app-profile";
  122. const KEY_APP_GLOBAL                  = "app-global";
  123.  
  124. const CATEGORY_INSTALL_LOCATIONS      = "extension-install-locations";
  125.  
  126. const PREFIX_NS_EM                    = "http://www.mozilla.org/2004/em-rdf#";
  127. const PREFIX_NS_CHROME                = "http://www.mozilla.org/rdf/chrome#";
  128. const PREFIX_ITEM_URI                 = "urn:mozilla:item:";
  129. const PREFIX_EXTENSION                = "urn:mozilla:extension:";
  130. const PREFIX_THEME                    = "urn:mozilla:theme:";
  131. const RDFURI_INSTALL_MANIFEST_ROOT    = "urn:mozilla:install-manifest";
  132. const RDFURI_ITEM_ROOT                = "urn:mozilla:item:root"
  133. const RDFURI_DEFAULT_THEME            = "urn:mozilla:item:{b01bf10c-302a-11da-b67b-000d60ca027b}";
  134. const XMLURI_PARSE_ERROR              = "http://www.mozilla.org/newlayout/xml/parsererror.xml"
  135. const XMLURI_BLOCKLIST                = "http://www.mozilla.org/2006/addons-blocklist";
  136.  
  137. const URI_GENERIC_ICON_XPINSTALL      = "chrome://mozapps/skin/xpinstall/xpinstallItemGeneric.png";
  138. const URI_GENERIC_ICON_THEME          = "chrome://mozapps/skin/extensions/themeGeneric.png";
  139. const URI_XPINSTALL_CONFIRM_DIALOG    = "chrome://mozapps/content/xpinstall/xpinstallConfirm.xul";
  140. const URI_FINALIZE_DIALOG             = "chrome://mozapps/content/extensions/finalize.xul";
  141. const URI_EXTENSIONS_PROPERTIES       = "chrome://mozapps/locale/extensions/extensions.properties";
  142. const URI_BRAND_PROPERTIES            = "chrome://branding/locale/brand.properties";
  143. const URI_DOWNLOADS_PROPERTIES        = "chrome://mozapps/locale/downloads/downloads.properties";
  144. const URI_EXTENSION_UPDATE_DIALOG     = "chrome://mozapps/content/extensions/update.xul";
  145. const URI_EXTENSION_LIST_DIALOG       = "chrome://mozapps/content/extensions/list.xul";
  146.  
  147. const INSTALLERROR_SUCCESS               = 0;
  148. const INSTALLERROR_INVALID_VERSION       = -1;
  149. const INSTALLERROR_INVALID_GUID          = -2;
  150. const INSTALLERROR_INCOMPATIBLE_VERSION  = -3;
  151. const INSTALLERROR_PHONED_HOME           = -4;
  152. const INSTALLERROR_INCOMPATIBLE_PLATFORM = -5;
  153. const INSTALLERROR_BLOCKLISTED           = -6;
  154.  
  155. const MODE_RDONLY   = 0x01;
  156. const MODE_WRONLY   = 0x02;
  157. const MODE_CREATE   = 0x08;
  158. const MODE_APPEND   = 0x10;
  159. const MODE_TRUNCATE = 0x20;
  160.  
  161. const PERMS_FILE      = 0644;
  162. const PERMS_DIRECTORY = 0755;
  163.  
  164. var firefoxAppID = "{ec8030f7-c20a-464f-9b0e-13a3a9e97384}";
  165. var firefoxVersion = "2.0.0.8";
  166.  
  167. var gApp  = null;
  168. var gPref = null;
  169. var gRDF  = null;
  170. var gOS   = null;
  171. var gXPCOMABI             = null;
  172. var gOSTarget             = null;
  173. var gConsole              = null;
  174. var gInstallManifestRoot  = null;
  175. var gVersionChecker       = null;
  176. var gLoggingEnabled       = null;
  177. var gCheckCompatibility   = true;
  178.  
  179. /** 
  180.  * Valid GUIDs fit this pattern.
  181.  */
  182. var gIDTest = /^(\{[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}\}|[a-z0-9-\._]*\@[a-z0-9-\._]+)$/i;
  183.  
  184. // shared code for suppressing bad cert dialogs
  185. //@line 40 "/cygdrive/K/tinderbuild/src/flock/mozilla/toolkit/mozapps/extensions/src/../../shared/src/badCertHandler.js"
  186.  
  187. /**
  188.  * Only allow built-in certs for HTTPS connections.  See bug 340198.
  189.  */
  190. function checkCert(channel) {
  191.   if (!channel.originalURI.schemeIs("https"))  // bypass
  192.     return;
  193.  
  194.   const Ci = Components.interfaces;  
  195.   var cert =
  196.       channel.securityInfo.QueryInterface(Ci.nsISSLStatusProvider).
  197.       SSLStatus.QueryInterface(Ci.nsISSLStatus).serverCert;
  198.  
  199.   var issuer = cert.issuer;
  200.   while (issuer && !cert.equals(issuer)) {
  201.     cert = issuer;
  202.     issuer = cert.issuer;
  203.   }
  204.  
  205.   if (!issuer || issuer.tokenName != "Builtin Object Token")
  206.     throw "cert issuer is not built-in";
  207. }
  208.  
  209. /**
  210.  * This class implements nsIBadCertListener.  It's job is to prevent "bad cert"
  211.  * security dialogs from being shown to the user.  It is better to simply fail
  212.  * if the certificate is bad. See bug 304286.
  213.  */
  214. function BadCertHandler() {
  215. }
  216. BadCertHandler.prototype = {
  217.  
  218.   // nsIBadCertListener
  219.   confirmUnknownIssuer: function(socketInfo, cert, certAddType) {
  220.     LOG("EM BadCertHandler: Unknown issuer");
  221.     return false;
  222.   },
  223.  
  224.   confirmMismatchDomain: function(socketInfo, targetURL, cert) {
  225.     LOG("EM BadCertHandler: Mismatched domain");
  226.     return false;
  227.   },
  228.  
  229.   confirmCertExpired: function(socketInfo, cert) {
  230.     LOG("EM BadCertHandler: Expired certificate");
  231.     return false;
  232.   },
  233.  
  234.   notifyCrlNextupdate: function(socketInfo, targetURL, cert) {
  235.   },
  236.  
  237.   // nsIChannelEventSink
  238.   onChannelRedirect: function(oldChannel, newChannel, flags) {
  239.     // make sure the certificate of the old channel checks out before we follow
  240.     // a redirect from it.  See bug 340198.
  241.     checkCert(oldChannel);
  242.   },
  243.  
  244.   // nsIInterfaceRequestor
  245.   getInterface: function(iid) {
  246.     if (iid.equals(Components.interfaces.nsIBadCertListener) ||
  247.         iid.equals(Components.interfaces.nsIChannelEventSink))
  248.       return this;
  249.  
  250.     Components.returnCode = Components.results.NS_ERROR_NO_INTERFACE;
  251.     return null;
  252.   },
  253.  
  254.   // nsISupports
  255.   QueryInterface: function(iid) {
  256.     if (!iid.equals(Components.interfaces.nsIBadCertListener) &&
  257.         !iid.equals(Components.interfaces.nsIChannelEventSink) &&
  258.         !iid.equals(Components.interfaces.nsIInterfaceRequestor) &&
  259.         !iid.equals(Components.interfaces.nsISupports))
  260.       throw Components.results.NS_ERROR_NO_INTERFACE;
  261.     return this;
  262.   }
  263. };
  264. //@line 186 "/cygdrive/K/tinderbuild/src/flock/mozilla/toolkit/mozapps/extensions/src/nsExtensionManager.js.in"
  265.  
  266. /**
  267.  * Creates a Version Checker object.
  268.  * @returns A handle to the global Version Checker service.
  269.  */
  270. function getVersionChecker() {
  271.   if (!gVersionChecker) {
  272.     gVersionChecker = Components.classes["@mozilla.org/xpcom/version-comparator;1"]
  273.                                 .getService(Components.interfaces.nsIVersionComparator);
  274.   }
  275.   return gVersionChecker;
  276. }
  277.  
  278. // XXX: Fix up straggler extensions who claim to be stuck on ancient versions
  279. // Should be removed at some later point, at least by when we switch to
  280. // Firefox 3
  281. function fixupFlockMaxVersion(aMaxVersion) {
  282.   var versionChecker = getVersionChecker();
  283.   if (versionChecker.compare(aMaxVersion, "0.7.99") >= 0 &&
  284.       versionChecker.compare(aMaxVersion, "1.0") < 0)
  285.   {
  286.     return "1.0.0.*";
  287.   } else {
  288.     return aMaxVersion;
  289.   }
  290. }
  291.  
  292. var BundleManager = { 
  293.   /**
  294.   * Creates and returns a String Bundle at the specified URI
  295.   * @param   bundleURI
  296.   *          The URI of the bundle to load
  297.   * @returns A nsIStringBundle which was retrieved.
  298.   */
  299.   getBundle: function(bundleURI) {
  300.     var sbs = Components.classes["@mozilla.org/intl/stringbundle;1"]
  301.                         .getService(Components.interfaces.nsIStringBundleService);
  302.     return sbs.createBundle(bundleURI);
  303.   },
  304.   
  305.   _appName: "",
  306.   
  307.   /**
  308.    * The Application's display name.
  309.    */
  310.   get appName() {
  311.     if (!this._appName) {
  312.       var brandBundle = this.getBundle(URI_BRAND_PROPERTIES)
  313.       this._appName = brandBundle.GetStringFromName("brandShortName");
  314.     }
  315.     return this._appName;
  316.   }
  317. };
  318.  
  319. ///////////////////////////////////////////////////////////////////////////////
  320. //
  321. // Utility Functions
  322. //
  323. function EM_NS(property) {
  324.   return PREFIX_NS_EM + property;
  325. }
  326.  
  327. function CHROME_NS(property) {
  328.   return PREFIX_NS_CHROME + property;
  329. }
  330.  
  331. function EM_R(property) {
  332.   return gRDF.GetResource(EM_NS(property));
  333. }
  334.  
  335. function EM_L(literal) {
  336.   return gRDF.GetLiteral(literal);
  337. }
  338.  
  339. function EM_I(integer) {
  340.   return gRDF.GetIntLiteral(integer);
  341. }
  342.  
  343. function EM_D(integer) {
  344.   return gRDF.GetDateLiteral(integer);
  345. }
  346.  
  347. /**
  348.  * Gets a preference value, handling the case where there is no default.
  349.  * @param   func
  350.  *          The name of the preference function to call, on nsIPrefBranch
  351.  * @param   preference
  352.  *          The name of the preference
  353.  * @param   defaultValue
  354.  *          The default value to return in the event the preference has 
  355.  *          no setting
  356.  * @returns The value of the preference, or undefined if there was no
  357.  *          user or default value.
  358.  */
  359. function getPref(func, preference, defaultValue) {
  360.   try {
  361.     return gPref[func](preference);
  362.   }
  363.   catch (e) {
  364.   }
  365.   return defaultValue;
  366. }
  367.  
  368. /**
  369.  * Initializes a RDF Container at a URI in a datasource.
  370.  * @param   datasource
  371.  *          The datasource the container is in
  372.  * @param   root
  373.  *          The RDF Resource which is the root of the container.
  374.  * @returns The nsIRDFContainer, initialized at the root.
  375.  */
  376. function getContainer(datasource, root) {
  377.   var ctr = Components.classes["@mozilla.org/rdf/container;1"]
  378.                       .createInstance(Components.interfaces.nsIRDFContainer);
  379.   ctr.Init(datasource, root);
  380.   return ctr;
  381. }
  382.  
  383. /**
  384.  * Gets a RDF Resource for item with the given ID
  385.  * @param   id
  386.  *          The GUID of the item to construct a RDF resource to the 
  387.  *          active item for
  388.  * @returns The RDF Resource to the Active item. 
  389.  */
  390. function getResourceForID(id) {
  391.   return gRDF.GetResource(PREFIX_ITEM_URI + id);
  392. }
  393.  
  394. /**
  395.  * Construct a nsIUpdateItem with the supplied metadata
  396.  * ...
  397.  */
  398. function makeItem(id, version, locationKey, minVersion, maxVersion, name, 
  399.                   updateURL, updateHash, iconURL, updateRDF, type) {
  400.   var item = Components.classes["@mozilla.org/updates/item;1"]
  401.                        .createInstance(Components.interfaces.nsIUpdateItem);
  402.   item.init(id, version, locationKey, minVersion, maxVersion, name,
  403.             updateURL, updateHash, iconURL, updateRDF, type);
  404.   return item;
  405. }
  406.  
  407. /**
  408.  * Gets the specified directory at the speciifed hierarchy under a 
  409.  * Directory Service key. 
  410.  * @param   key
  411.  *          The Directory Service Key to start from
  412.  * @param   pathArray
  413.  *          An array of path components to locate beneath the directory 
  414.  *          specified by |key|
  415.  * @return  nsIFile object for the location specified. If the directory
  416.  *          requested does not exist, it is created, along with any
  417.  *          parent directories that need to be created.
  418.  */
  419. function getDir(key, pathArray) {
  420.   return getDirInternal(key, pathArray, true);
  421. }
  422.  
  423. /**
  424.  * Gets the specified directory at the speciifed hierarchy under a 
  425.  * Directory Service key. 
  426.  * @param   key
  427.  *          The Directory Service Key to start from
  428.  * @param   pathArray
  429.  *          An array of path components to locate beneath the directory 
  430.  *          specified by |key|
  431.  * @return  nsIFile object for the location specified. If the directory
  432.  *          requested does not exist, it is NOT created.
  433.  */
  434. function getDirNoCreate(key, pathArray) {
  435.   return getDirInternal(key, pathArray, false);
  436. }
  437.  
  438. /**
  439.  * Gets the specified directory at the speciifed hierarchy under a 
  440.  * Directory Service key. 
  441.  * @param   key
  442.  *          The Directory Service Key to start from
  443.  * @param   pathArray
  444.  *          An array of path components to locate beneath the directory 
  445.  *          specified by |key|
  446.  * @param   shouldCreate
  447.  *          true if the directory hierarchy specified in |pathArray|
  448.  *          should be created if it does not exist,
  449.  *          false otherwise.
  450.  * @return  nsIFile object for the location specified. 
  451.  */
  452. function getDirInternal(key, pathArray, shouldCreate) {
  453.   var fileLocator = Components.classes["@mozilla.org/file/directory_service;1"]
  454.                               .getService(Components.interfaces.nsIProperties);
  455.   var dir = fileLocator.get(key, nsILocalFile);
  456.   for (var i = 0; i < pathArray.length; ++i) {
  457.     dir.append(pathArray[i]);
  458.     if (shouldCreate && !dir.exists())
  459.       dir.create(nsILocalFile.DIRECTORY_TYPE, PERMS_DIRECTORY);
  460.   }
  461.   dir.followLinks = false;
  462.   return dir;
  463. }
  464.  
  465. /**
  466.  * Gets the file at the speciifed hierarchy under a Directory Service key.
  467.  * @param   key
  468.  *          The Directory Service Key to start from
  469.  * @param   pathArray
  470.  *          An array of path components to locate beneath the directory 
  471.  *          specified by |key|. The last item in this array must be the
  472.  *          leaf name of a file.
  473.  * @return  nsIFile object for the file specified. The file is NOT created
  474.  *          if it does not exist, however all required directories along 
  475.  *          the way are.
  476.  */
  477. function getFile(key, pathArray) {
  478.   var file = getDir(key, pathArray.slice(0, -1));
  479.   file.append(pathArray[pathArray.length - 1]);
  480.   return file;
  481. }
  482.  
  483. /**
  484.  * Gets the descriptor of a directory as a relative path to common base
  485.  * directories (profile, user home, app install dir, etc).
  486.  *
  487.  * @param   itemLocation
  488.  *          The nsILocalFile representing the item's directory.
  489.  * @param   installLocation the nsIInstallLocation for this item
  490.  */
  491. function getDescriptorFromFile(itemLocation, installLocation) {
  492.   var baseDir = installLocation.location;
  493.  
  494.   if (baseDir && baseDir.contains(itemLocation, true)) {
  495.     return "rel%" + itemLocation.getRelativeDescriptor(baseDir);
  496.   }
  497.  
  498.   return "abs%" + itemLocation.persistentDescriptor;
  499. }
  500.  
  501. function getAbsoluteDescriptor(itemLocation) {
  502.   return itemLocation.persistentDescriptor;
  503. }
  504.  
  505. /**
  506.  * Initializes a Local File object based on a descriptor
  507.  * provided by "getDescriptorFromFile".
  508.  *
  509.  * @param   descriptor
  510.  *          The descriptor that locates the directory
  511.  * @param   installLocation
  512.  *          The nsIInstallLocation object for this item.
  513.  * @returns The nsILocalFile object representing the location of the item
  514.  */
  515. function getFileFromDescriptor(descriptor, installLocation) {
  516.   var location = Components.classes["@mozilla.org/file/local;1"]
  517.                            .createInstance(nsILocalFile);
  518.  
  519.   var m = descriptor.match(/^(abs|rel)\%(.*)$/);
  520.   if (!m)
  521.     throw Components.results.NS_ERROR_INVALID_ARG;
  522.  
  523.   if (m[1] == "rel") {
  524.     location.setRelativeDescriptor(installLocation.location, m[2]);
  525.   }
  526.   else {
  527.     location.persistentDescriptor = m[2];
  528.   }
  529.  
  530.   return location;
  531. }
  532.  
  533. /**
  534.  * Determines if a file is an item package - either a XPI or a JAR file.
  535.  * @param   file
  536.  *          The file to check
  537.  * @returns true if the file is an item package, false otherwise.
  538.  */
  539. function fileIsItemPackage(file) {
  540.   var fileURL = getURIFromFile(file);
  541.   if (fileURL instanceof nsIURL)
  542.     var extension = fileURL.fileExtension.toLowerCase();
  543.   return extension == "xpi" || extension == "jar";
  544. }
  545.  
  546. /** 
  547.  * Return the leaf name used by the extension system for staging an item.
  548.  * @param   id
  549.  *          The GUID of the item
  550.  * @param   type
  551.  *          The nsIUpdateItem type of the item
  552.  * @returns The leaf name of the staged file.
  553.  */
  554. function getStagedLeafName(id, type) {
  555.   if (type == nsIUpdateItem.TYPE_THEME) 
  556.     return id + ".jar";
  557.   return id + ".xpi";
  558. }
  559.  
  560. /**
  561.  * Opens a safe file output stream for writing. 
  562.  * @param   file
  563.  *          The file to write to.
  564.  * @param   modeFlags
  565.  *          (optional) File open flags. Can be undefined. 
  566.  * @returns nsIFileOutputStream to write to.
  567.  */
  568. function openSafeFileOutputStream(file, modeFlags) {
  569.   var fos = Components.classes["@mozilla.org/network/safe-file-output-stream;1"]
  570.                       .createInstance(Components.interfaces.nsIFileOutputStream);
  571.   if (modeFlags === undefined)
  572.     modeFlags = MODE_WRONLY | MODE_CREATE | MODE_TRUNCATE;
  573.   if (!file.exists()) 
  574.     file.create(nsILocalFile.NORMAL_FILE_TYPE, PERMS_FILE);
  575.   fos.init(file, modeFlags, PERMS_FILE, 0);
  576.   return fos;
  577. }
  578.  
  579. /**
  580.  * Closes a safe file output stream.
  581.  * @param   stream
  582.  *          The stream to close.
  583.  */
  584. function closeSafeFileOutputStream(stream) {
  585.   if (stream instanceof Components.interfaces.nsISafeOutputStream)
  586.     stream.finish();
  587.   else
  588.     stream.close();
  589. }
  590.  
  591. /**
  592.  * Deletes a directory and its children. First it tries nsIFile::Remove(true).
  593.  * If that fails it will fall back to recursing, setting the appropriate
  594.  * permissions, and deleting the current entry. This is needed for when we have
  595.  * rights to delete a directory but there are entries that have a read-only
  596.  * attribute (e.g. a copy restore from a read-only CD, etc.)
  597.  * @param   dir
  598.  *          A nsIFile for the directory to be deleted
  599.  */
  600. function removeDirRecursive(dir) {
  601.   try {
  602.     dir.remove(true);
  603.     return;
  604.   }
  605.   catch (e) {
  606.   }
  607.  
  608.   var dirEntries = dir.directoryEntries;
  609.   while (dirEntries.hasMoreElements()) {
  610.     var entry = dirEntries.getNext().QueryInterface(Components.interfaces.nsIFile);
  611.  
  612.     if (entry.isDirectory()) {
  613.       removeDirRecursive(entry);
  614.     }
  615.     else {
  616.       entry.permissions = PERMS_FILE;
  617.       entry.remove(false);
  618.     }
  619.   }
  620.   dir.permissions = PERMS_DIRECTORY;
  621.   dir.remove(true);
  622. }
  623.  
  624. /**
  625.  * Logs a string to the error console. 
  626.  * @param   string
  627.  *          The string to write to the error console..
  628.  */  
  629. function LOG(string) {
  630.   if (gLoggingEnabled) {
  631.     dump("*** " + string + "\n");
  632.     gConsole.logStringMessage(string);
  633.   }
  634. }
  635.  
  636. /** 
  637.  * Randomize the specified file name. Used to force RDF to bypass the cache
  638.  * when loading certain types of files.
  639.  * @param   fileName 
  640.  *          A file name to randomize, e.g. install.rdf
  641.  * @returns A randomized file name, e.g. install-xyz.rdf
  642.  */
  643. function getRandomFileName(fileName) {
  644.   var extensionDelimiter = fileName.lastIndexOf(".");
  645.   var prefix = fileName.substr(0, extensionDelimiter);
  646.   var suffix = fileName.substr(extensionDelimiter);
  647.   
  648.   var characters = "abcdefghijklmnopqrstuvwxyz0123456789";
  649.   var nameString = prefix + "-";
  650.   for (var i = 0; i < 3; ++i) {
  651.     var index = Math.round((Math.random()) * characters.length);
  652.     nameString += characters.charAt(index);
  653.   }
  654.   return nameString + "." + suffix;
  655. }
  656.  
  657. /**
  658.  * Get the RDF URI prefix of a nsIUpdateItem type. This function should be used
  659.  * ONLY to support Firefox 1.0 Update RDF files! Item URIs in the datasource 
  660.  * are NOT prefixed.
  661.  * @param   type
  662.  *          The nsIUpdateItem type to find a RDF URI prefix for
  663.  * @returns The RDF URI prefix.
  664.  */
  665. function getItemPrefix(type) {
  666.   if (type & nsIUpdateItem.TYPE_EXTENSION) 
  667.     return PREFIX_EXTENSION;
  668.   else if (type & nsIUpdateItem.TYPE_THEME)
  669.     return PREFIX_THEME;
  670.   return PREFIX_ITEM_URI;
  671. }
  672.  
  673. /**
  674.  * Trims a prefix from a string.
  675.  * @param   string
  676.  *          The source string
  677.  * @param   prefix
  678.  *          The prefix to remove.
  679.  * @returns The suffix (string - prefix)
  680.  */
  681. function stripPrefix(string, prefix) {
  682.   return string.substr(prefix.length);
  683. }
  684.  
  685. /**
  686.  * Gets a File URL spec for a nsIFile
  687.  * @param   file
  688.  *          The file to get a file URL spec to
  689.  * @returns The file URL spec to the file
  690.  */
  691. function getURLSpecFromFile(file) {
  692.   var ioServ = Components.classes["@mozilla.org/network/io-service;1"]
  693.                          .getService(Components.interfaces.nsIIOService);
  694.   var fph = ioServ.getProtocolHandler("file")
  695.                   .QueryInterface(Components.interfaces.nsIFileProtocolHandler);
  696.   return fph.getURLSpecFromFile(file);
  697. }
  698.  
  699. /**
  700.  * Constructs a URI to a spec.
  701.  * @param   spec
  702.  *          The spec to construct a URI to
  703.  * @returns The nsIURI constructed.
  704.  */
  705. function newURI(spec) {
  706.   var ioServ = Components.classes["@mozilla.org/network/io-service;1"]
  707.                          .getService(Components.interfaces.nsIIOService);
  708.   return ioServ.newURI(spec, null, null);
  709. }
  710.  
  711. /** 
  712.  * Constructs a File URI to a nsIFile
  713.  * @param   file
  714.  *          The file to construct a File URI to
  715.  * @returns The file URI to the file
  716.  */
  717. function getURIFromFile(file) {
  718.   var ioServ = Components.classes["@mozilla.org/network/io-service;1"]
  719.                          .getService(Components.interfaces.nsIIOService);
  720.   return ioServ.newFileURI(file);
  721. }
  722.  
  723. /**
  724.  * @returns Whether or not we are currently running in safe mode.
  725.  */
  726. function inSafeMode() {
  727.   return gApp.inSafeMode;
  728. }
  729.  
  730. /**
  731.  * Extract the string value from a RDF Literal or Resource
  732.  * @param   literalOrResource
  733.  *          RDF String Literal or Resource
  734.  * @returns String value of the literal or resource, or undefined if the object
  735.  *          supplied is not a RDF string literal or resource.
  736.  */
  737. function stringData(literalOrResource) {
  738.   if (literalOrResource instanceof Components.interfaces.nsIRDFLiteral)
  739.     return literalOrResource.Value;
  740.   if (literalOrResource instanceof Components.interfaces.nsIRDFResource)
  741.     return literalOrResource.Value;
  742.   return undefined;
  743. }
  744.  
  745. /**
  746.  * Extract the integer value of a RDF Literal
  747.  * @param   literal
  748.  *          nsIRDFInt literal
  749.  * @return  integer value of the literal
  750.  */
  751. function intData(literal) {
  752.   if (literal instanceof Components.interfaces.nsIRDFInt)
  753.     return literal.Value;
  754.   return undefined;
  755. }
  756.  
  757. /**
  758.  * Gets a property from an install manifest.
  759.  * @param   installManifest
  760.  *          An Install Manifest datasource to read from
  761.  * @param   property
  762.  *          The name of a proprety to read (sans EM_NS)
  763.  * @returns The literal value of the property, or undefined if the property has
  764.  *          no value.
  765.  */
  766. function getManifestProperty(installManifest, property) {
  767.   var target = installManifest.GetTarget(gInstallManifestRoot, 
  768.                                          gRDF.GetResource(EM_NS(property)), true);
  769.   var val = stringData(target);
  770.   return val === undefined ? intData(target) : val;
  771. }
  772.  
  773. /**
  774.  * Given an Install Manifest Datasource, retrieves the type of item the manifest
  775.  * describes.
  776.  * @param   installManifest 
  777.  *          The Install Manifest Datasource.
  778.  * @return  The nsIUpdateItem type of the item described by the manifest
  779.  *          returns TYPE_EXTENSION if attempts to determine the type fail.
  780.  */
  781. function getAddonTypeFromInstallManifest(installManifest) {
  782.   var target = installManifest.GetTarget(gInstallManifestRoot, 
  783.                                          gRDF.GetResource(EM_NS("type")), true);
  784.   if (target) {
  785.     var type = stringData(target);
  786.     return type === undefined ? intData(target) : parseInt(type);
  787.   }
  788.  
  789.   // Firefox 1.0 and earlier did not support addon-type annotation on the 
  790.   // Install Manifest, so we fall back to a theme-only property to 
  791.   // differentiate.
  792.   if (getManifestProperty(installManifest, "internalName") !== undefined)
  793.     return nsIUpdateItem.TYPE_THEME;
  794.  
  795.   // If no type is provided, default to "Extension"
  796.   return nsIUpdateItem.TYPE_EXTENSION;    
  797. }
  798.  
  799. /**
  800.  * Shows a message about an incompatible Extension/Theme. 
  801.  * @param   installData
  802.  *          An Install Data object from |getInstallData|
  803.  */
  804. function showIncompatibleError(installData) {
  805.   var extensionStrings = BundleManager.getBundle(URI_EXTENSIONS_PROPERTIES);
  806.   var params = [extensionStrings.GetStringFromName("type-" + installData.type)];
  807.   var title = extensionStrings.formatStringFromName("incompatibleTitle", 
  808.                                                     params, params.length);
  809.   var message;
  810.   var targetAppData = installData.currentApp;
  811.   if (!targetAppData) {
  812.     params = [installData.name, installData.version, BundleManager.appName];
  813.     message = extensionStrings.formatStringFromName("incompatibleMessageNoApp", 
  814.                                                     params, params.length);
  815.   }
  816.   else if (targetAppData.minVersion == targetAppData.maxVersion) {
  817.     // If the min target app version and the max target app version are the same, don't show
  818.     // a message like, "Foo is only compatible with Firefox versions 0.7 to 0.7", rather just
  819.     // show, "Foo is only compatible with Firefox 0.7"
  820.     params = [installData.name, installData.version, BundleManager.appName, gApp.version, 
  821.               installData.name, installData.version, BundleManager.appName, 
  822.               targetAppData.minVersion];
  823.     message = extensionStrings.formatStringFromName("incompatibleMsgSingleAppVersion", 
  824.                                                     params, params.length);
  825.   }
  826.   else {
  827.     params = [installData.name, installData.version, BundleManager.appName, gApp.version, 
  828.               installData.name, installData.version, BundleManager.appName, 
  829.               targetAppData.minVersion, targetAppData.maxVersion];
  830.     message = extensionStrings.formatStringFromName("incompatibleMsg", params, params.length);
  831.   }
  832.   var ps = Components.classes["@mozilla.org/embedcomp/prompt-service;1"]
  833.                      .getService(Components.interfaces.nsIPromptService);
  834.   ps.alert(null, title, message);
  835. }
  836.  
  837. /**
  838.  * Shows a message.
  839.  * @param   titleKey
  840.  *          String key of the title string in the Extensions localization file.
  841.  * @param   messageKey
  842.  *          String key of the message string in the Extensions localization file.
  843.  * @param   messageParams
  844.  *          Array of strings to be substituted into |messageKey|. Can be null.
  845.  */
  846. function showMessage(titleKey, titleParams, messageKey, messageParams) {
  847.   var extensionStrings = BundleManager.getBundle(URI_EXTENSIONS_PROPERTIES);
  848.   if (titleParams && titleParams.length > 0) {
  849.     var title = extensionStrings.formatStringFromName(titleKey, titleParams,
  850.                                                       titleParams.length);
  851.   }
  852.   else
  853.     title = extensionStrings.GetStringFromName(titleKey);
  854.  
  855.   if (messageParams && messageParams.length > 0) {
  856.     var message = extensionStrings.formatStringFromName(messageKey, messageParams,
  857.                                                         messageParams.length);
  858.   }
  859.   else
  860.     message = extensionStrings.GetStringFromName(messageKey);
  861.   var ps = Components.classes["@mozilla.org/embedcomp/prompt-service;1"]
  862.                      .getService(Components.interfaces.nsIPromptService);
  863.   ps.alert(null, title, message);
  864. }
  865.  
  866. /**
  867.  * Shows a dialog for blocklisted items.
  868.  * @param   items
  869.  *          An array of nsIUpdateItems.
  870.  * @param   fromInstall
  871.  *          Whether this is called from an install or from the blocklist
  872.  *          background check.
  873.  */
  874. function showBlocklistMessage(items, fromInstall) {
  875.   var win = null;
  876.   var params = Components.classes["@mozilla.org/embedcomp/dialogparam;1"]
  877.                          .createInstance(Components.interfaces.nsIDialogParamBlock);
  878.   params.SetInt(0, (fromInstall ? 1 : 0));
  879.   params.SetInt(1, items.length);
  880.   params.SetNumberStrings(items.length * 2);
  881.   for (var i = 0; i < items.length; ++i) 
  882.     params.SetString(i, items[i].name + " " + items[i].version);
  883.  
  884.   // if this was initiated from an install try to find the appropriate manager
  885.   if (fromInstall) {
  886.     var wm = Components.classes["@mozilla.org/appshell/window-mediator;1"]
  887.                        .getService(Components.interfaces.nsIWindowMediator);
  888.     win = wm.getMostRecentWindow(nsIUpdateItem.TYPE_THEME ? "Extension:Manager-themes" :
  889.                                                             "Extension:Manager-extensions");
  890.   }
  891.   var ww = Components.classes["@mozilla.org/embedcomp/window-watcher;1"]
  892.                      .getService(Components.interfaces.nsIWindowWatcher);
  893.   ww.openWindow(win, URI_EXTENSION_LIST_DIALOG, "",
  894.                 "chrome,centerscreen,modal,dialog,titlebar", params);
  895. }
  896.  
  897. /** 
  898.  * Gets a zip reader for the file specified.
  899.  * @param   zipFile
  900.  *          A ZIP archive to open with a nsIZipReader.
  901.  * @return  A nsIZipReader for the file specified.
  902.  */
  903. function getZipReaderForFile(zipFile) {
  904.   try {
  905.     var zipReader = Components.classes["@mozilla.org/libjar/zip-reader;1"]
  906.                               .createInstance(Components.interfaces.nsIZipReader);
  907.     zipReader.init(zipFile);
  908.     zipReader.open();
  909.   }
  910.   catch (e) {
  911.     zipReader.close();
  912.     throw e;
  913.   }
  914.   return zipReader;
  915. }
  916.  
  917. /** 
  918.  * Extract a RDF file from a ZIP archive to a random location in the system
  919.  * temp directory.
  920.  * @param   zipFile
  921.  *          A ZIP archive to read from
  922.  * @param   fileName 
  923.  *          The name of the file to read from the zip. 
  924.  * @param   suppressErrors
  925.  *          Whether or not to report errors. 
  926.  * @return  The file created in the temp directory.
  927.  */
  928. function extractRDFFileToTempDir(zipFile, fileName, suppressErrors) {
  929.   var file = getFile(KEY_TEMPDIR, [getRandomFileName(fileName)]);
  930.   try {
  931.     var zipReader = getZipReaderForFile(zipFile);
  932.     zipReader.getEntry(fileName);
  933.     zipReader.extract(fileName, file);
  934.     zipReader.close();
  935.   }
  936.   catch (e) {
  937.     if (!suppressErrors) {
  938.       showMessage("missingFileTitle", [], "missingFileMessage", 
  939.                   [BundleManager.appName, fileName]);
  940.       throw e;
  941.     }
  942.   }
  943.   return file;
  944. }
  945.  
  946. /**
  947.  * Show a message to the user informing them they are installing an old non-EM
  948.  * style Theme, and that these are not supported.
  949.  * @param   installManifest 
  950.  *          The Old-Style Contents Manifest datasource representing the theme. 
  951.  */
  952. function showOldThemeError(contentsManifest) {
  953.   var extensionStrings = BundleManager.getBundle(URI_EXTENSIONS_PROPERTIES);
  954.   var params = [extensionStrings.GetStringFromName("theme")];
  955.   var title = extensionStrings.formatStringFromName("incompatibleTitle", 
  956.                                                     params, params.length);
  957.   var appVersion = extensionStrings.GetStringFromName("incompatibleOlder");
  958.   
  959.   try {  
  960.     var ctr = getContainer(contentsManifest, 
  961.                            gRDF.GetResource("urn:mozilla:skin:root"));
  962.     var elts = ctr.GetElements();
  963.     var nameArc = gRDF.GetResource(CHROME_NS("displayName"));
  964.     while (elts.hasMoreElements()) {
  965.       var elt = elts.getNext().QueryInterface(Components.interfaces.nsIRDFResource);
  966.       themeName = stringData(contentsManifest.GetTarget(elt, nameArc, true));
  967.       if (themeName) 
  968.         break;
  969.     }
  970.   }
  971.   catch (e) {
  972.     themeName = extensionStrings.GetStringFromName("incompatibleThemeName");
  973.   }
  974.   
  975.   params = [themeName, "", BundleManager.appName, gApp.version, themeName, "", 
  976.             BundleManager.appName, appVersion];
  977.   var message = extensionStrings.formatStringFromName("incompatibleMsgSingleAppVersion",
  978.                                                       params, params.length);
  979.   var ps = Components.classes["@mozilla.org/embedcomp/prompt-service;1"]
  980.                      .getService(Components.interfaces.nsIPromptService);
  981.   ps.alert(null, title, message);
  982. }
  983.  
  984. /**
  985.  * Gets an Install Manifest datasource from a file.
  986.  * @param   file
  987.  *          The nsIFile that contains the Install Manifest RDF
  988.  * @returns The Install Manifest datasource
  989.  */
  990. function getInstallManifest(file) {
  991.   var fileURL = getURLSpecFromFile(file);
  992.   var ds = gRDF.GetDataSourceBlocking(fileURL);
  993.   var arcs = ds.ArcLabelsOut(gInstallManifestRoot);
  994.   if (!arcs.hasMoreElements()) {
  995.     ds = null;
  996.     var uri = Components.classes["@mozilla.org/network/io-service;1"]
  997.                         .getService(Components.interfaces.nsIIOService)
  998.                         .newFileURI(file);
  999.     var url = uri.QueryInterface(nsIURL);
  1000.     showMessage("malformedTitle", [], "malformedMessage", 
  1001.                 [BundleManager.appName, url.fileName]);
  1002.   }
  1003.   return ds;
  1004. }
  1005.  
  1006. /**
  1007.  * An enumeration of items in a JS array.
  1008.  * @constructor
  1009.  */
  1010. function ArrayEnumerator(aItems) {
  1011.   this._index = 0;
  1012.   if (aItems) {
  1013.     for (var i = 0; i < aItems.length; ++i) {
  1014.       if (!aItems[i])
  1015.         aItems.splice(i, 1);      
  1016.     }
  1017.   }
  1018.   this._contents = aItems;
  1019. }
  1020.  
  1021. ArrayEnumerator.prototype = {
  1022.   _index: 0,
  1023.   _contents: [],
  1024.   
  1025.   hasMoreElements: function() {
  1026.     return this._index < this._contents.length;
  1027.   },
  1028.   
  1029.   getNext: function() {
  1030.     return this._contents[this._index++];      
  1031.   }
  1032. };
  1033.  
  1034. /**
  1035.  * An enumeration of files in a JS array.
  1036.  * @param   files
  1037.  *          The files to enumerate
  1038.  * @constructor
  1039.  */
  1040. function FileEnumerator(files) {
  1041.   this._index = 0;
  1042.   if (files) {
  1043.     for (var i = 0; i < files.length; ++i) {
  1044.       if (!files[i])
  1045.         files.splice(i, 1);      
  1046.     }
  1047.   }
  1048.   this._contents = files;
  1049. }
  1050.  
  1051. FileEnumerator.prototype = {
  1052.   _index: 0,
  1053.   _contents: [],
  1054.  
  1055.   /**
  1056.    * Gets the next file in the sequence.
  1057.    */  
  1058.   get nextFile() {
  1059.     if (this._index < this._contents.length)
  1060.       return this._contents[this._index++];
  1061.     return null;
  1062.   },
  1063.   
  1064.   /**
  1065.    * Stop enumerating. Nothing to do here.
  1066.    */
  1067.   close: function() {
  1068.   },
  1069. };
  1070.  
  1071. /**
  1072.  * An object which identifies an Install Location for items, where the location
  1073.  * relationship is each item living in a directory named with its GUID under 
  1074.  * the directory used when constructing this object.
  1075.  *
  1076.  * e.g. <location>\{GUID1}
  1077.  *      <location>\{GUID2}
  1078.  *      <location>\{GUID3}
  1079.  *      ...
  1080.  *
  1081.  * @param   name
  1082.  *          The string identifier of this Install Location.
  1083.  * @param   location
  1084.  *          The directory that contains the items. 
  1085.  * @constructor
  1086.  */
  1087. function DirectoryInstallLocation(name, location, restricted, priority) {
  1088.   this._name = name;
  1089.   if (location.exists()) {
  1090.     if (!location.isDirectory())
  1091.       throw new Error("location must be a directoy!");
  1092.   }
  1093.   else {
  1094.     try {
  1095.       location.create(nsILocalFile.DIRECTORY_TYPE, 0775);
  1096.     }
  1097.     catch (e) {
  1098.       LOG("DirectoryInstallLocation: failed to create location " + 
  1099.           " directory = " + location.path + ", exception = " + e + "\n");
  1100.     }
  1101.   }
  1102.  
  1103.   this._location = location;
  1104.   this._locationToIDMap = {};
  1105.   this._restricted = restricted;
  1106.   this._priority = priority;
  1107. }
  1108. DirectoryInstallLocation.prototype = {
  1109.   _name           : "",
  1110.   _location       : null,
  1111.   _locationToIDMap: null,
  1112.   _restricted     : false,
  1113.   _priority       : 0,
  1114.   _canAccess      : null,
  1115.   
  1116.   /**
  1117.    * See nsIExtensionManager.idl
  1118.    */
  1119.   get name() {
  1120.     return this._name;
  1121.   },
  1122.   
  1123.   /**
  1124.    * Reads a directory linked to in a file.
  1125.    * @param   file
  1126.    *          The file containing the directory path
  1127.    * @returns A nsILocalFile object representing the linked directory.
  1128.    */
  1129.   _readDirectoryFromFile: function(file) {
  1130.     var fis = Components.classes["@mozilla.org/network/file-input-stream;1"]
  1131.                         .createInstance(Components.interfaces.nsIFileInputStream);
  1132.     fis.init(file, -1, -1, false);
  1133.     var line = { value: "" };
  1134.     if (fis instanceof nsILineInputStream)
  1135.       fis.readLine(line);
  1136.     fis.close();
  1137.     if (line.value) {
  1138.       var linkedDirectory = Components.classes["@mozilla.org/file/local;1"]
  1139.                                       .createInstance(nsILocalFile);
  1140.       try {
  1141.         linkedDirectory.initWithPath(line.value);
  1142.       }
  1143.       catch (e) {
  1144.         linkedDirectory.setRelativeDescriptor(file.parent, line.value);
  1145.       }
  1146.       
  1147.       return linkedDirectory;
  1148.     }
  1149.     return null;
  1150.   },
  1151.   
  1152.   /**
  1153.    * See nsIExtensionManager.idl
  1154.    */
  1155.   get itemLocations() {
  1156.     var locations = [];
  1157.     if (!this._location.exists())
  1158.       return new FileEnumerator(locations);
  1159.     
  1160.     try {
  1161.       var entries = this._location.directoryEntries.QueryInterface(nsIDirectoryEnumerator);
  1162.       while (true) {
  1163.         var entry = entries.nextFile;
  1164.         if (!entry)
  1165.           break;
  1166.         entry instanceof nsILocalFile;
  1167.         if (!entry.isDirectory() && gIDTest.test(entry.leafName)) {
  1168.           var linkedDirectory = this._readDirectoryFromFile(entry);
  1169.           if (linkedDirectory && linkedDirectory.exists() && 
  1170.               linkedDirectory.isDirectory()) {
  1171.             locations.push(linkedDirectory);
  1172.             this._locationToIDMap[linkedDirectory.persistentDescriptor] = entry.leafName;
  1173.           }
  1174.         }
  1175.         else
  1176.           locations.push(entry);
  1177.       }
  1178.       entries.close();
  1179.     }
  1180.     catch (e) { 
  1181.     }
  1182.     return new FileEnumerator(locations);
  1183.   },
  1184.   
  1185.   /**
  1186.    * Retrieves the GUID for an item at the specified location.
  1187.    * @param   file
  1188.    *          The location where an item might live.
  1189.    * @returns The ID for an item that might live at the location specified.
  1190.    * 
  1191.    * N.B. This function makes no promises about whether or not this path is 
  1192.    *      actually maintained by this Install Location.
  1193.    */
  1194.   getIDForLocation: function(file) {
  1195.     var section = file.leafName;
  1196.     var filePD = file.persistentDescriptor;
  1197.     if (filePD in this._locationToIDMap) 
  1198.       section = this._locationToIDMap[filePD];
  1199.     
  1200.     if (gIDTest.test(section))
  1201.       return RegExp.$1;
  1202.     return undefined;
  1203.   },
  1204.   
  1205.   /**
  1206.    * See nsIExtensionManager.idl
  1207.    */
  1208.   get location() {
  1209.     return this._location.clone();
  1210.   },
  1211.   
  1212.   /**
  1213.    * See nsIExtensionManager.idl
  1214.    */
  1215.   get restricted() {
  1216.     return this._restricted;
  1217.   },
  1218.   
  1219.   /**
  1220.    * See nsIExtensionManager.idl
  1221.    */
  1222.   get canAccess() {
  1223.     if (this._canAccess != null)
  1224.       return this._canAccess;
  1225.  
  1226.     var testFile = this.location;
  1227.     testFile.append("Access Privileges Test");
  1228.     try {
  1229.       testFile.createUnique(nsILocalFile.DIRECTORY_TYPE, PERMS_DIRECTORY);
  1230.       testFile.remove(false);
  1231.       this._canAccess = true;
  1232.     }
  1233.     catch (e) {
  1234.       this._canAccess = false;
  1235.     }
  1236.     return this._canAccess;
  1237.   },
  1238.   
  1239.   /**
  1240.    * See nsIExtensionManager.idl
  1241.    */
  1242.   get priority() {
  1243.     return this._priority;
  1244.   },
  1245.   
  1246.   /**
  1247.    * See nsIExtensionManager.idl
  1248.    */
  1249.   getItemLocation: function(id) {
  1250.     var itemLocation = this.location;
  1251.     itemLocation.append(id);
  1252.     if (itemLocation.exists() && !itemLocation.isDirectory())
  1253.       return this._readDirectoryFromFile(itemLocation);
  1254.     if (!itemLocation.exists() && this.canAccess)
  1255.       itemLocation.create(nsILocalFile.DIRECTORY_TYPE, PERMS_DIRECTORY);
  1256.     return itemLocation;
  1257.   },
  1258.   
  1259.   /**
  1260.    * See nsIExtensionManager.idl
  1261.    */
  1262.   itemIsManagedIndependently: function(id) {
  1263.     var itemLocation = this.location;
  1264.     itemLocation.append(id);
  1265.     return itemLocation.exists() && !itemLocation.isDirectory();      
  1266.   },
  1267.   
  1268.   /**
  1269.    * See nsIExtensionManager.idl
  1270.    */
  1271.   getItemFile: function(id, filePath) {
  1272.     var itemLocation = this.getItemLocation(id).clone();
  1273.     var parts = filePath.split("/");
  1274.     for (var i = 0; i < parts.length; ++i)
  1275.       itemLocation.append(parts[i]);
  1276.     return itemLocation;
  1277.   },
  1278.  
  1279.   /**
  1280.    * Stages the specified file for later.
  1281.    * @param   file
  1282.    *          The file to stage
  1283.    * @param   id
  1284.    *          The GUID of the item the file represents
  1285.    */
  1286.   stageFile: function(file, id) {
  1287.     var stagedFile = this.location;
  1288.     stagedFile.append(DIR_STAGE);
  1289.     stagedFile.append(id);
  1290.     stagedFile.append(file.leafName);
  1291.  
  1292.     // When an incompatible update is successful the file is already staged
  1293.     if (stagedFile.equals(file))
  1294.       return stagedFile;
  1295.  
  1296.     if (stagedFile.exists()) 
  1297.       stagedFile.remove(false);
  1298.       
  1299.     file.copyTo(stagedFile.parent, stagedFile.leafName);
  1300.     
  1301.     // If the file has incorrect permissions set, correct them now.
  1302.     if (!stagedFile.isWritable())
  1303.       stagedFile.permissions = PERMS_FILE;
  1304.     
  1305.     return stagedFile;
  1306.   },
  1307.   
  1308.   /**
  1309.    * Returns the most recently staged package (e.g. the last XPI or JAR in a
  1310.    * directory) for an item and removes items that do not qualify.
  1311.    * @param   id
  1312.    *          The ID of the staged package
  1313.    * @returns an nsIFile if the package exists otherwise null.
  1314.    */
  1315.   getStageFile: function(id) {
  1316.     var stageFile = null;
  1317.     var stageDir = this.location;
  1318.     stageDir.append(DIR_STAGE);
  1319.     stageDir.append(id);
  1320.     if (!stageDir.exists() || !stageDir.isDirectory())
  1321.       return null;
  1322.     try {
  1323.       var entries = stageDir.directoryEntries.QueryInterface(nsIDirectoryEnumerator);
  1324.       while (entries.hasMoreElements()) {
  1325.         var file = entries.nextFile;
  1326.         if (!(file instanceof nsILocalFile))
  1327.           continue;
  1328.         if (file.isDirectory())
  1329.           removeDirRecursive(file);
  1330.         else if (fileIsItemPackage(file)) {
  1331.           if (stageFile)
  1332.             stageFile.remove(false);
  1333.           stageFile = file;
  1334.         }
  1335.         else
  1336.           file.remove(false);
  1337.       }
  1338.     }
  1339.     catch (e) {
  1340.     }
  1341.     if (entries instanceof nsIDirectoryEnumerator)
  1342.       entries.close();
  1343.     return stageFile;
  1344.   },
  1345.   
  1346.   /**
  1347.    * Removes a file from the stage. This cleans up the stage if there is nothing
  1348.    * else left after the remove operation.
  1349.    * @param   file
  1350.    *          The file to remove.
  1351.    */
  1352.   removeFile: function(file) {
  1353.     if (file.exists())
  1354.       file.remove(false);
  1355.     var parent = file.parent;
  1356.     var entries = parent.directoryEntries;    
  1357.     try {
  1358.       // XXXrstrong calling hasMoreElements on a nsIDirectoryEnumerator after
  1359.       // it has been removed will cause a crash on Mac OS X - bug 292823
  1360.       while (parent && !parent.equals(this.location) &&
  1361.             !entries.hasMoreElements()) {
  1362.         parent.remove(false);
  1363.         parent = parent.parent;
  1364.         entries = parent.directoryEntries;
  1365.       }
  1366.       if (entries instanceof nsIDirectoryEnumerator)
  1367.         entries.close();
  1368.     }
  1369.     catch (e) {
  1370.       LOG("DirectoryInstallLocation::removeFile: failed to remove staged " + 
  1371.           " directory = " + parent.path + ", exception = " + e + "\n");
  1372.     }
  1373.   },
  1374.   
  1375.   /**
  1376.    * See nsISupports.idl
  1377.    */
  1378.   QueryInterface: function (iid) {
  1379.     if (!iid.equals(Components.interfaces.nsIInstallLocation) &&
  1380.         !iid.equals(Components.interfaces.nsISupports))
  1381.       throw Components.results.NS_ERROR_NO_INTERFACE;
  1382.     return this;
  1383.   }
  1384. };
  1385.  
  1386. //@line 1308 "/cygdrive/K/tinderbuild/src/flock/mozilla/toolkit/mozapps/extensions/src/nsExtensionManager.js.in"
  1387.  
  1388. const nsIWindowsRegKey = Components.interfaces.nsIWindowsRegKey;
  1389.  
  1390. /**
  1391.  * An object that identifies the location of installed items based on entries
  1392.  * in the Windows registry.  For each application a subkey is defined that
  1393.  * contains a set of values, where the name of each value is a GUID and the
  1394.  * contents of the value is a filesystem path identifying a directory
  1395.  * containing an installed item.
  1396.  *
  1397.  * @param   name
  1398.  *          The string identifier of this Install Location.
  1399.  * @param   rootKey
  1400.  *          The root key (one of the ROOT_KEY_ values from nsIWindowsRegKey).
  1401.  * @param   restricted
  1402.  *          Indicates that the location may be restricted (e.g., this is
  1403.  *          usually true of a system level install location).
  1404.  * @param   priority
  1405.  *          The priority of this install location.
  1406.  * @constructor
  1407.  */
  1408. function WinRegInstallLocation(name, rootKey, restricted, priority) {
  1409.   this._name = name;
  1410.   this._rootKey = rootKey;
  1411.   this._restricted = restricted;
  1412.   this._priority = priority;
  1413.   this._IDToDirMap = {};
  1414.   this._DirToIDMap = {};
  1415.  
  1416.   // Reading the registry may throw an exception, and that's ok.  In error
  1417.   // cases, we just leave ourselves in the empty state.
  1418.   try {
  1419.     var path = this._appKeyPath + "\\Extensions";
  1420.     var key = Components.classes["@mozilla.org/windows-registry-key;1"]
  1421.                         .createInstance(nsIWindowsRegKey);
  1422.     key.open(this._rootKey, path, nsIWindowsRegKey.ACCESS_READ);
  1423.     this._readAddons(key);
  1424.   } catch (e) {
  1425.     if (key)
  1426.       key.close();
  1427.   }
  1428. }
  1429. WinRegInstallLocation.prototype = {
  1430.   _name       : "",
  1431.   _rootKey    : null,
  1432.   _restricted : false,
  1433.   _priority   : 0,
  1434.   _IDToDirMap : null,  // mapping from ID to directory object
  1435.   _DirToIDMap : null,  // mapping from directory path to ID
  1436.   
  1437.   /**
  1438.    * Retrieves the path of this Application's data key in the registry.
  1439.    */
  1440.   get _appKeyPath() {
  1441.     var appVendor = gApp.vendor;
  1442.     var appName = gApp.name;
  1443.  
  1444. //@line 1370 "/cygdrive/K/tinderbuild/src/flock/mozilla/toolkit/mozapps/extensions/src/nsExtensionManager.js.in"
  1445.   
  1446.     // XULRunner-based apps may intentionally not specify a vendor:
  1447.     if (appVendor != "")
  1448.       appVendor += "\\";
  1449.  
  1450.     return "SOFTWARE\\" + appVendor + appName;
  1451.   },
  1452.  
  1453.   /**
  1454.    * Read the registry and build a mapping between GUID and directory for each
  1455.    * installed item.
  1456.    * @param   key
  1457.    *          The key that contains the GUID->path pairs
  1458.    */
  1459.   _readAddons: function(key) {
  1460.     var count = key.valueCount; 
  1461.     for (var i = 0; i < count; ++i) {
  1462.       var id = key.getValueName(i);
  1463.  
  1464.       var dir = Components.classes["@mozilla.org/file/local;1"]
  1465.                           .createInstance(nsILocalFile);
  1466.       dir.initWithPath(key.readStringValue(id));
  1467.  
  1468.       if (dir.exists() && dir.isDirectory()) {
  1469.         this._IDToDirMap[id] = dir;
  1470.         this._DirToIDMap[dir.path] = id;
  1471.       }
  1472.     }
  1473.   },
  1474.  
  1475.   get name() {
  1476.     return this._name;
  1477.   },
  1478.  
  1479.   get itemLocations() {
  1480.     var locations = [];
  1481.     for (var id in this._IDToDirMap) {
  1482.       locations.push(this._IDToDirMap[id]);
  1483.     }
  1484.     return new FileEnumerator(locations);
  1485.   },
  1486.  
  1487.   get location() {
  1488.     return null;
  1489.   },
  1490.  
  1491.   get restricted() {
  1492.     return this._restricted;
  1493.   },
  1494.  
  1495.   // you should never be able to write to this location
  1496.   get canAccess() {
  1497.     return false;
  1498.   },
  1499.  
  1500.   get priority() {
  1501.     return this._priority;
  1502.   },
  1503.  
  1504.   getItemLocation: function(id) {
  1505.     return this._IDToDirMap[id];
  1506.   },
  1507.  
  1508.   getIDForLocation: function(dir) {
  1509.     return this._DirToIDMap[dir.path];
  1510.   },
  1511.  
  1512.   getItemFile: function(id, filePath) {
  1513.     var itemLocation = this.getItemLocation(id).clone();
  1514.     var parts = filePath.split("/");
  1515.     for (var i = 0; i < parts.length; ++i)
  1516.       itemLocation.append(parts[i]);
  1517.     return itemLocation;
  1518.   },
  1519.  
  1520.   itemIsManagedIndependently: function(id) {
  1521.     return true;
  1522.   },
  1523.  
  1524.   QueryInterface: function(iid) {
  1525.     if (!iid.equals(Components.interfaces.nsIInstallLocation) &&
  1526.         !iid.equals(Components.interfaces.nsISupports))
  1527.       throw Components.results.NS_ERROR_NO_INTERFACE;
  1528.     return this;
  1529.   }
  1530. };
  1531.  
  1532. //@line 1458 "/cygdrive/K/tinderbuild/src/flock/mozilla/toolkit/mozapps/extensions/src/nsExtensionManager.js.in"
  1533.  
  1534. /**
  1535.  * An object which handles the installation of an Extension.
  1536.  * @constructor
  1537.  */
  1538. function Installer(ds, id, installLocation, type) {
  1539.   this._ds = ds;
  1540.   this._id = id;
  1541.   this._type = type;
  1542.   this._installLocation = installLocation;
  1543. }
  1544. Installer.prototype = {
  1545.   // Item metadata
  1546.   _id: null,
  1547.   _ds: null,
  1548.   _installLocation: null,
  1549.   _metadataDS: null,
  1550.   
  1551.   /**
  1552.    * Gets the Install Manifest datasource we are installing from.
  1553.    */
  1554.   get metadataDS() {
  1555.     if (!this._metadataDS) {
  1556.       var metadataFile = this._installLocation
  1557.                              .getItemFile(this._id, FILE_INSTALL_MANIFEST);
  1558.       if (!metadataFile.exists()) 
  1559.         return null;
  1560.       this._metadataDS = getInstallManifest(metadataFile);
  1561.       if (!this._metadataDS) {
  1562.         LOG("Installer::install: metadata datasource for extension " + 
  1563.             this._id + " at " + metadataFile.path + " could not be loaded. " + 
  1564.             " Installation will not proceed.");
  1565.       }
  1566.     }
  1567.     return this._metadataDS;
  1568.   },
  1569.   
  1570.   /**
  1571.    * Installs the Extension
  1572.    * @param   file
  1573.    *          A XPI/JAR file to install from. If this is null or does not exist,
  1574.    *          the item is assumed to be an expanded directory, located at the GUID
  1575.    *          key in the supplied Install Location.
  1576.    */
  1577.   installFromFile: function(file) {
  1578.     // Move files from the staging dir into the extension's final home.
  1579.     if (file && file.exists()) {
  1580.       this._installExtensionFiles(file);
  1581.     }
  1582.  
  1583.     if (!this.metadataDS)
  1584.       return;
  1585.  
  1586.     // Upgrade old-style contents.rdf Chrome Manifests if necessary.
  1587.     if (this._type == nsIUpdateItem.TYPE_THEME)
  1588.       this.upgradeThemeChrome();
  1589.     else
  1590.       this.upgradeExtensionChrome();
  1591.  
  1592.     // Add metadata for the extension to the global extension metadata set
  1593.     this._ds.addItemMetadata(this._id, this.metadataDS, this._installLocation);
  1594.   },
  1595.   
  1596.   /**
  1597.    * Safely extract the Extension's files into the target folder.
  1598.    * @param   file
  1599.    *          The XPI/JAR file to install from.
  1600.    */
  1601.   _installExtensionFiles: function(file) {
  1602.     var installer = this;
  1603.     /**
  1604.       * Callback for |safeInstallOperation| that performs file level installation
  1605.       * steps for an Extension.
  1606.       * @param   extensionID
  1607.       *          The GUID of the Extension being installed.
  1608.       * @param   installLocation 
  1609.       *          The Install Location where the Extension is being installed.
  1610.       * @param   xpiFile
  1611.       *          The source XPI file that contains the Extension.
  1612.       */
  1613.     function extractExtensionFiles(extensionID, installLocation, xpiFile) {
  1614.       // Create a logger to log install operations for uninstall. This must be 
  1615.       // created in the |safeInstallOperation| callback, since it creates a file
  1616.       // in the target directory. If we do this outside of the callback, we may
  1617.       // be clobbering a file we should not be.
  1618.       var zipReader = getZipReaderForFile(xpiFile);
  1619.       
  1620.       // create directories first
  1621.       var entries = zipReader.findEntries("*/");
  1622.       while (entries.hasMoreElements()) {
  1623.         var entry = entries.getNext().QueryInterface(Components.interfaces.nsIZipEntry);
  1624.         var target = installLocation.getItemFile(extensionID, entry.name);
  1625.         if (!target.exists()) {
  1626.           try {
  1627.             target.create(nsILocalFile.DIRECTORY_TYPE, PERMS_DIRECTORY);
  1628.           }
  1629.           catch (e) {
  1630.             LOG("extractExtensionsFiles: failed to create target directory for extraction " + 
  1631.                 " file = " + target.path + ", exception = " + e + "\n");
  1632.           }
  1633.         }
  1634.       }
  1635.  
  1636.       entries = zipReader.findEntries("*");
  1637.       while (entries.hasMoreElements()) {
  1638.         entry = entries.getNext().QueryInterface(Components.interfaces.nsIZipEntry);
  1639.         target = installLocation.getItemFile(extensionID, entry.name);
  1640.         if (target.exists())
  1641.           continue;
  1642.  
  1643.         try {
  1644.           target.create(nsILocalFile.NORMAL_FILE_TYPE, PERMS_FILE);
  1645.         }
  1646.         catch (e) {
  1647.           LOG("extractExtensionsFiles: failed to create target file for extraction " + 
  1648.               " file = " + target.path + ", exception = " + e + "\n");
  1649.         }
  1650.         zipReader.extract(entry.name, target);
  1651.       }
  1652.       zipReader.close();
  1653.     }
  1654.  
  1655.     var installer = this;
  1656.     /**
  1657.       * Callback for |safeInstallOperation| that performs file level installation
  1658.       * steps for a Theme.
  1659.       * @param   id
  1660.       *          The GUID of the Theme being installed.
  1661.       * @param   installLocation 
  1662.       *          The Install Location where the Theme is being installed.
  1663.       * @param   jarFile
  1664.       *          The source JAR file that contains the Theme.
  1665.       */
  1666.     function extractThemeFiles(id, installLocation, jarFile) {
  1667.       var themeDirectory = installLocation.getItemLocation(id);
  1668.       var zipReader = getZipReaderForFile(jarFile);
  1669.  
  1670.       // The only critical file is the install.rdf and we would not have
  1671.       // gotten this far without one.
  1672.       var rootFiles = [FILE_INSTALL_MANIFEST, FILE_CHROME_MANIFEST,
  1673.                        "preview.png", "icon.png"];
  1674.       for (var i = 0; i < rootFiles.length; ++i) {
  1675.         try {
  1676.           var entry = zipReader.getEntry(rootFiles[i]);
  1677.           var target = installLocation.getItemFile(id, rootFiles[i]);
  1678.           zipReader.extract(rootFiles[i], target);
  1679.         }
  1680.         catch (e) {
  1681.         }
  1682.       }
  1683.  
  1684.       var manifestFile = installLocation.getItemFile(id, FILE_CHROME_MANIFEST);
  1685.       // new theme structure requires a chrome.manifest file
  1686.       if (manifestFile.exists()) {
  1687.         var entries = zipReader.findEntries(DIR_CHROME + "/*");
  1688.         while (entries.hasMoreElements()) {
  1689.           entry = entries.getNext().QueryInterface(Components.interfaces.nsIZipEntry);
  1690.           if (entry.name.substr(entry.name.length - 1, 1) == "/")
  1691.             continue;
  1692.           target = installLocation.getItemFile(id, entry.name);
  1693.           try {
  1694.             target.create(nsILocalFile.NORMAL_FILE_TYPE, PERMS_FILE);
  1695.           }
  1696.           catch (e) {
  1697.             LOG("extractThemeFiles: failed to create target file for extraction " + 
  1698.                 " file = " + target.path + ", exception = " + e + "\n");
  1699.           }
  1700.           zipReader.extract(entry.name, target);
  1701.         }
  1702.         zipReader.close();
  1703.       }
  1704.       else { // old theme structure requires only an install.rdf
  1705.         try {
  1706.           var entry = zipReader.getEntry(FILE_CONTENTS_MANIFEST);
  1707.           var contentsManifestFile = installLocation.getItemFile(id, FILE_CONTENTS_MANIFEST);
  1708.           contentsManifestFile.create(nsILocalFile.NORMAL_FILE_TYPE, PERMS_FILE);
  1709.           zipReader.extract(FILE_CONTENTS_MANIFEST, contentsManifestFile);
  1710.         }
  1711.         catch (e) {
  1712.           zipReader.close();
  1713.           LOG("extractThemeFiles: failed to extract contents.rdf: " + target.path);
  1714.           throw e; // let the safe-op clean up
  1715.         }
  1716.         zipReader.close();
  1717.         var chromeDir = installLocation.getItemFile(id, DIR_CHROME);
  1718.         try {
  1719.           jarFile.copyTo(chromeDir, jarFile.leafName);
  1720.         }
  1721.         catch (e) {
  1722.           LOG("extractThemeFiles: failed to copy theme JAR file to: " + chromeDir.path);
  1723.           throw e; // let the safe-op clean up
  1724.         }
  1725.  
  1726.         if (!installer.metadataDS && installer._type == nsIUpdateItem.TYPE_THEME) {
  1727.           if (contentsManifestFile && contentsManifestFile.exists()) {
  1728.             var contentsManifest = gRDF.GetDataSourceBlocking(getURLSpecFromFile(contentsManifestFile));
  1729.             showOldThemeError(contentsManifest);
  1730.           }
  1731.           LOG("Theme JAR file: " + jarFile.leafName + " contains an Old-Style " + 
  1732.               "Theme that is not compatible with this version of the software.");
  1733.           throw new Error("Old Theme"); // let the safe-op clean up
  1734.         }
  1735.       }
  1736.     }
  1737.  
  1738.     var callback = extractExtensionFiles;
  1739.     if (this._type == nsIUpdateItem.TYPE_THEME)
  1740.       callback = extractThemeFiles;
  1741.     safeInstallOperation(this._id, this._installLocation,
  1742.                           { callback: callback, data: file });
  1743.   },
  1744.   
  1745.   /** 
  1746.    * Upgrade contents.rdf Chrome Manifests used by this Theme to the new 
  1747.    * chrome.manifest format if necessary.
  1748.    */
  1749.   upgradeThemeChrome: function() {
  1750.     // Use the Chrome Registry API to install the theme there
  1751.     var cr = Components.classes["@mozilla.org/chrome/chrome-registry;1"]
  1752.                        .getService(Components.interfaces.nsIToolkitChromeRegistry);
  1753.     var manifestFile = this._installLocation.getItemFile(this._id, FILE_CHROME_MANIFEST);
  1754.     if (manifestFile.exists() ||
  1755.         this._id == stripPrefix(RDFURI_DEFAULT_THEME, PREFIX_ITEM_URI))
  1756.       return;
  1757.  
  1758.     try {
  1759.       // creates a chrome manifest for themes
  1760.       var manifestURI = getURIFromFile(manifestFile);
  1761.       var chromeDir = this._installLocation.getItemFile(this._id, DIR_CHROME);
  1762.       // We're relying on the fact that there is only one JAR file
  1763.       // in the "chrome" directory. This is a hack, but it works.
  1764.       var entries = chromeDir.directoryEntries.QueryInterface(nsIDirectoryEnumerator);
  1765.       var jarFile = entries.nextFile;
  1766.       if (jarFile) {
  1767.         var jarFileURI = getURIFromFile(jarFile);
  1768.         var contentsURI = newURI("jar:" + jarFileURI.spec + "!/");
  1769.         var contentsFile = this._installLocation.getItemFile(this._id, FILE_CONTENTS_MANIFEST);
  1770.         var contentsFileURI = getURIFromFile(contentsFile.parent);
  1771.  
  1772.         cr.processContentsManifest(contentsFileURI, manifestURI, contentsURI, false, true);
  1773.       }
  1774.       entries.close();
  1775.       contentsFile.remove(false);
  1776.     }
  1777.     catch (e) {
  1778.       // Failed to register chrome, for any number of reasons - non-existent 
  1779.       // contents.rdf file at the location specified, malformed contents.rdf, 
  1780.       // etc. Set the pending op to be OP_NEEDS_UNINSTALL so that the 
  1781.       // extension is uninstalled properly during the subsequent uninstall 
  1782.       // pass in |ExtensionManager::_finalizeOperations|
  1783.       LOG("upgradeThemeChrome: failed for theme " + this._id + " - why " + 
  1784.           "not convert to the new chrome.manifest format while you're at it? " + 
  1785.           "Failure exception: " + e);
  1786.       showMessage("malformedRegistrationTitle", [], "malformedRegistrationMessage",
  1787.                   [BundleManager.appName]);
  1788.  
  1789.       var stageFile = this._installLocation.getStageFile(this._id);
  1790.       if (stageFile)
  1791.         this._installLocation.removeFile(stageFile);
  1792.  
  1793.       StartupCache.put(this._installLocation, this._id, OP_NEEDS_UNINSTALL, true);
  1794.       StartupCache.write();
  1795.     }
  1796.   },
  1797.  
  1798.   /** 
  1799.    * Upgrade contents.rdf Chrome Manifests used by this Extension to the new 
  1800.    * chrome.manifest format if necessary.
  1801.    */
  1802.   upgradeExtensionChrome: function() {
  1803.     // If the extension is aware of the new flat chrome manifests and has 
  1804.     // included one, just use it instead of generating one from the
  1805.     // install.rdf/contents.rdf data.
  1806.     var manifestFile = this._installLocation.getItemFile(this._id, FILE_CHROME_MANIFEST);
  1807.     if (manifestFile.exists())
  1808.       return;
  1809.  
  1810.     try {
  1811.       // Enumerate the metadata datasource files collection and register chrome
  1812.       // for each file, calling _registerChrome for each.
  1813.       var chromeDir = this._installLocation.getItemFile(this._id, DIR_CHROME);
  1814.       
  1815.       if (!manifestFile.parent.exists())
  1816.         return;
  1817.  
  1818.       // Even if an extension doesn't have any chrome, we generate an empty
  1819.       // manifest file so that we don't try to upgrade from the "old-style"
  1820.       // chrome manifests at every startup.
  1821.       manifestFile.create(nsILocalFile.NORMAL_FILE_TYPE, PERMS_FILE);
  1822.  
  1823.       var manifestURI = getURIFromFile(manifestFile);
  1824.       var files = this.metadataDS.GetTargets(gInstallManifestRoot, EM_R("file"), true);
  1825.       while (files.hasMoreElements()) {
  1826.         var file = files.getNext().QueryInterface(Components.interfaces.nsIRDFResource);
  1827.         var chromeFile = chromeDir.clone();
  1828.         var fileName = file.Value.substr("urn:mozilla:extension:file:".length, file.Value.length);
  1829.         chromeFile.append(fileName);
  1830.  
  1831.         var fileURLSpec = getURLSpecFromFile(chromeFile);
  1832.         if (!chromeFile.isDirectory()) {
  1833.           var zipReader = getZipReaderForFile(chromeFile);
  1834.           fileURLSpec = "jar:" + fileURLSpec + "!/";
  1835.           var contentsFile = this._installLocation.getItemFile(this._id, FILE_CONTENTS_MANIFEST);
  1836.           contentsFile.create(nsILocalFile.NORMAL_FILE_TYPE, PERMS_FILE);
  1837.         }
  1838.  
  1839.         var providers = [EM_R("package"), EM_R("skin"), EM_R("locale")];
  1840.         for (var i = 0; i < providers.length; ++i) {
  1841.           var items = this.metadataDS.GetTargets(file, providers[i], true);
  1842.           while (items.hasMoreElements()) {
  1843.             var item = items.getNext().QueryInterface(Components.interfaces.nsIRDFLiteral);
  1844.             var fileURI = newURI(fileURLSpec + item.Value);
  1845.             // Extract the contents.rdf files instead of opening them inside of
  1846.             // the jar. This prevents the jar from being cached by the zip
  1847.             // reader which will keep the jar in use and prevent deletion.
  1848.             if (zipReader) {
  1849.               zipReader.extract(item.Value + FILE_CONTENTS_MANIFEST, contentsFile);
  1850.               var contentsFileURI = getURIFromFile(contentsFile.parent);
  1851.             }
  1852.             else
  1853.               contentsFileURI = fileURI;
  1854.  
  1855.             var cr = Components.classes["@mozilla.org/chrome/chrome-registry;1"]
  1856.                                .getService(Components.interfaces.nsIToolkitChromeRegistry);
  1857.             cr.processContentsManifest(contentsFileURI, manifestURI, fileURI, true, false);
  1858.           }
  1859.         }
  1860.         if (zipReader) {
  1861.           zipReader.close();
  1862.           zipReader = null;
  1863.           contentsFile.remove(false);
  1864.         }
  1865.       }
  1866.     }
  1867.     catch (e) {
  1868.       // Failed to register chrome, for any number of reasons - non-existent 
  1869.       // contents.rdf file at the location specified, malformed contents.rdf, 
  1870.       // etc. Set the pending op to be OP_NEEDS_UNINSTALL so that the 
  1871.       // extension is uninstalled properly during the subsequent uninstall 
  1872.       // pass in |ExtensionManager::_finalizeOperations|
  1873.       LOG("upgradeExtensionChrome: failed for extension " + this._id + " - why " + 
  1874.           "not convert to the new chrome.manifest format while you're at it? " + 
  1875.           "Failure exception: " + e);
  1876.       showMessage("malformedRegistrationTitle", [], "malformedRegistrationMessage",
  1877.                   [BundleManager.appName]);
  1878.  
  1879.       var stageFile = this._installLocation.getStageFile(this._id);
  1880.       if (stageFile)
  1881.         this._installLocation.removeFile(stageFile);
  1882.  
  1883.       StartupCache.put(this._installLocation, this._id, OP_NEEDS_UNINSTALL, true);
  1884.       StartupCache.write();
  1885.     }
  1886.   }  
  1887. };
  1888.  
  1889. /**
  1890.  * Safely attempt to perform a caller-defined install operation for a given
  1891.  * item ID. Using aggressive success-safety checks, this function will attempt
  1892.  * to move an existing location for an item aside and then allow installation
  1893.  * into the appropriate folder. If any operation fails the installation will 
  1894.  * abort and roll back from the moved-aside old version.
  1895.  * @param   itemID
  1896.  *          The GUID of the item to perform the operation on.
  1897.  * @param   installLocation
  1898.  *          The Install Location where the item is installed.
  1899.  * @param   installCallback
  1900.  *          A caller supplied JS object with the following properties:
  1901.  *          "data"      A data parameter to be passed to the callback.
  1902.  *          "callback"  A function to perform the install operation. This
  1903.  *                      function is passed three parameters:
  1904.  *                      1. The GUID of the item being operated on.
  1905.  *                      2. The Install Location where the item is installed.
  1906.  *                      3. The "data" parameter on the installCallback object.
  1907.  */
  1908. function safeInstallOperation(itemID, installLocation, installCallback) {
  1909.   var movedFiles = [];
  1910.   
  1911.   /**
  1912.    * Reverts a deep move by moving backed up files back to their original
  1913.    * location.
  1914.    */
  1915.   function rollbackMove()
  1916.   {
  1917.     for (var i = 0; i < movedFiles.length; ++i) {
  1918.       var oldFile = movedFiles[i].oldFile;
  1919.       var newFile = movedFiles[i].newFile;
  1920.       try {
  1921.         newFile.moveTo(oldFile.parent, newFile.leafName);
  1922.       }
  1923.       catch (e) {
  1924.         LOG("safeInstallOperation: failed to roll back files after an install " + 
  1925.             "operation failed. Failed to roll back: " + newFile.path + " to: " + 
  1926.             oldFile.path + " ... aborting installation.");
  1927.         throw e;
  1928.       }
  1929.     }
  1930.   }
  1931.   
  1932.   /**
  1933.    * Moves a file to a new folder.
  1934.    * @param   file
  1935.    *          The file to move
  1936.    * @param   destination
  1937.    *          The target folder
  1938.    */
  1939.   function moveFile(file, destination) {
  1940.     try {
  1941.       var oldFile = file.clone();
  1942.       file.moveTo(destination, file.leafName);
  1943.       movedFiles.push({ oldFile: oldFile, newFile: file });
  1944.     }
  1945.     catch (e) {
  1946.       LOG("safeInstallOperation: failed to back up file: " + file.path + " to: " + 
  1947.           destination.path + " ... rolling back file moves and aborting " + 
  1948.           "installation.");
  1949.       rollbackMove();
  1950.       throw e;
  1951.     }
  1952.   }
  1953.   
  1954.   /**
  1955.    * Moves a directory to a new location. If any part of the move fails,
  1956.    * files already moved will be rolled back.
  1957.    * @param   sourceDir
  1958.    *          The directory to move
  1959.    * @param   targetDir
  1960.    *          The destination directory
  1961.    * @param   currentDir
  1962.    *          The current directory (a subdirectory of |sourceDir| or 
  1963.    *          |sourceDir| itself) we are moving files from.
  1964.    */
  1965.   function moveDirectory(sourceDir, targetDir, currentDir) {
  1966.     var entries = currentDir.directoryEntries.QueryInterface(nsIDirectoryEnumerator);
  1967.     while (true) {
  1968.       var entry = entries.nextFile;
  1969.       if (!entry)
  1970.         break;
  1971.       if (entry.isDirectory())
  1972.         moveDirectory(sourceDir, targetDir, entry);
  1973.       else if (entry instanceof nsILocalFile) {
  1974.         var rd = entry.getRelativeDescriptor(sourceDir);
  1975.         var destination = targetDir.clone().QueryInterface(nsILocalFile);
  1976.         destination.setRelativeDescriptor(targetDir, rd);
  1977.         moveFile(entry, destination.parent);
  1978.       }
  1979.     }
  1980.     entries.close();
  1981.   }
  1982.   
  1983.   /**
  1984.    * Removes the temporary backup directory where we stored files. 
  1985.    * @param   directory
  1986.    *          The backup directory to remove
  1987.    */
  1988.   function cleanUpTrash(directory) {
  1989.     try {
  1990.       // Us-generated. Safe.
  1991.       if (directory && directory.exists())
  1992.         removeDirRecursive(directory);
  1993.     }
  1994.     catch (e) {
  1995.       LOG("safeInstallOperation: failed to clean up the temporary backup of the " + 
  1996.           "older version: " + itemLocationTrash.path);
  1997.       // This is a non-fatal error. Annoying, but non-fatal. 
  1998.     }
  1999.   }
  2000.   
  2001.   if (!installLocation.itemIsManagedIndependently(itemID)) {
  2002.     var itemLocation = installLocation.getItemLocation(itemID);
  2003.     if (itemLocation.exists()) {
  2004.       var trashDirName = itemID + "-trash";
  2005.       var itemLocationTrash = itemLocation.parent.clone();
  2006.       itemLocationTrash.append(trashDirName);
  2007.       if (itemLocationTrash.exists()) {
  2008.         // We can remove recursively here since this is a folder we created, not
  2009.         // one the user specified. If this fails, it'll throw, and the caller 
  2010.         // should stop installation.
  2011.         try {
  2012.           removeDirRecursive(itemLocationTrash);
  2013.         }
  2014.         catch (e) {
  2015.           LOG("safeFileOperation: failed to remove existing trash directory " + 
  2016.               itemLocationTrash.path + " ... aborting installation.");
  2017.           throw e;
  2018.         }
  2019.       }
  2020.       
  2021.       // Move the directory that contains the existing version of the item aside, 
  2022.       // into {GUID}-trash. This will throw if there's a failure and the install
  2023.       // will abort.
  2024.       moveDirectory(itemLocation, itemLocationTrash, itemLocation);
  2025.       
  2026.       // Clean up the original location, if necessary. Again, this is a path we 
  2027.       // generated, so it is safe to recursively delete.
  2028.       try {
  2029.         removeDirRecursive(itemLocation);
  2030.       }
  2031.       catch (e) {
  2032.         LOG("safeInstallOperation: failed to clean up item location after its contents " + 
  2033.             "were properly backed up. Failed to clean up: " + itemLocation.path + 
  2034.             " ... rolling back file moves and aborting installation.");
  2035.         rollbackMove();
  2036.         cleanUpTrash(itemLocationTrash);
  2037.         throw e;
  2038.       }
  2039.     }
  2040.   }
  2041.   else if (installLocation.name == KEY_APP_PROFILE ||
  2042.            installLocation.name == KEY_APP_GLOBAL) {
  2043.     // Check for a pointer file and move it aside if it exists
  2044.     var pointerFile = installLocation.location.clone();
  2045.     pointerFile.append(itemID);
  2046.     if (pointerFile.exists() && !pointerFile.isDirectory()) {
  2047.       var trashFileName = itemID + "-trash";
  2048.       var itemLocationTrash = installLocation.location.clone();
  2049.       itemLocationTrash.append(trashFileName);
  2050.       if (itemLocationTrash.exists()) {
  2051.         // We can remove recursively here since this is a folder we created, not
  2052.         // one the user specified. If this fails, it'll throw, and the caller 
  2053.         // should stop installation.
  2054.         try {
  2055.           removeDirRecursive(itemLocationTrash);
  2056.         }
  2057.         catch (e) {
  2058.           LOG("safeFileOperation: failed to remove existing trash directory " + 
  2059.               itemLocationTrash.path + " ... aborting installation.");
  2060.           throw e;
  2061.         }
  2062.       }
  2063.       itemLocationTrash.create(nsILocalFile.DIRECTORY_TYPE, PERMS_DIRECTORY);
  2064.       // Move the pointer file to the trash.
  2065.       moveFile(pointerFile, itemLocationTrash);
  2066.     }
  2067.   }
  2068.       
  2069.   // Now tell the client to do their stuff.
  2070.   try {
  2071.     installCallback.callback(itemID, installLocation, installCallback.data);
  2072.   }
  2073.   catch (e) {
  2074.     // This means the install operation failed. Remove everything and roll back.
  2075.     LOG("safeInstallOperation: install operation (caller-supplied callback) failed, " + 
  2076.         "rolling back file moves and aborting installation.");
  2077.     try {
  2078.       // Us-generated. Safe.
  2079.       removeDirRecursive(itemLocation);
  2080.     }
  2081.     catch (e) {
  2082.       LOG("safeInstallOperation: failed to remove the folder we failed to install " + 
  2083.           "an item into: " + itemLocation.path + " -- There is not much to suggest " + 
  2084.           "here... maybe restart and try again?");
  2085.       cleanUpTrash(itemLocationTrash);
  2086.       throw e;
  2087.     }
  2088.     rollbackMove();
  2089.     cleanUpTrash(itemLocationTrash);
  2090.     throw e;        
  2091.   }
  2092.   
  2093.   // Now, and only now - after everything else has succeeded (against all odds!) 
  2094.   // remove the {GUID}-trash directory where we stashed the old version of the 
  2095.   // item.
  2096.   cleanUpTrash(itemLocationTrash);
  2097. }
  2098.  
  2099. /**
  2100.  * Manages the list of pending operations.
  2101.  */
  2102. var PendingOperations = {
  2103.   _ops: { },
  2104.  
  2105.   /**
  2106.    * Adds an entry to the Pending Operations List
  2107.    * @param   opType
  2108.    *          The type of Operation to be performed
  2109.    * @param   entry
  2110.    *          A JS Object representing the item to be operated on:
  2111.    *          "locationKey"   The name of the Install Location where the item
  2112.    *                          is installed.
  2113.    *          "id"            The GUID of the item.
  2114.    */
  2115.   addItem: function(opType, entry) {
  2116.     if (opType == OP_NONE)
  2117.       this.clearOpsForItem(entry.id);
  2118.     else {
  2119.       if (!(opType in this._ops))
  2120.         this._ops[opType] = { };
  2121.       this._ops[opType][entry.id] = entry.locationKey;
  2122.     }
  2123.   },
  2124.   
  2125.   /**
  2126.    * Removes a Pending Operation from the list
  2127.    * @param   opType
  2128.    *          The type of Operation being removed
  2129.    * @param   id
  2130.    *          The GUID of the item to remove the entry for
  2131.    */
  2132.   clearItem: function(opType, id) {
  2133.     if (opType in this._ops && id in this._ops[opType])
  2134.       delete this._ops[opType][id];
  2135.   },
  2136.   
  2137.   /**
  2138.    * Removes all Pending Operation for an item
  2139.    * @param   id
  2140.    *          The ID of the item to remove the entries for
  2141.    */
  2142.   clearOpsForItem: function(id) {
  2143.     for (var opType in this._ops) {
  2144.       if (id in this._ops[opType])
  2145.         delete this._ops[opType][id];
  2146.     }
  2147.   },
  2148.  
  2149.   /**
  2150.    * Remove all Pending Operations of a certain type
  2151.    * @param   opType
  2152.    *          The type of Operation to remove all entries for
  2153.    */
  2154.   clearItems: function(opType) {
  2155.     if (opType in this._ops)
  2156.       delete this._ops[opType];
  2157.   },
  2158.   
  2159.   /**
  2160.    * Get an array of operations of a certain type
  2161.    * @param   opType
  2162.    *          The type of Operation to return a list of
  2163.    */
  2164.   getOperations: function(opType) {
  2165.     if (!(opType in this._ops))
  2166.       return [];
  2167.     var ops = [];
  2168.     for (var id in this._ops[opType])
  2169.       ops.push( {id: id, locationKey: this._ops[opType][id] } );
  2170.     return ops;
  2171.   },
  2172.   
  2173.   /**
  2174.    * The total number of Pending Operations, for all types.
  2175.    */
  2176.   get size() {
  2177.     var size = 0;
  2178.     for (var opType in this._ops) {
  2179.       for (var id in this._ops[opType])
  2180.         ++size;
  2181.     }
  2182.     return size;
  2183.   }
  2184. };
  2185.  
  2186. /**
  2187.  * Manages registered Install Locations
  2188.  */
  2189. var InstallLocations = { 
  2190.   _locations: { },
  2191.  
  2192.   /**
  2193.    * A nsISimpleEnumerator of all available Install Locations.
  2194.    */
  2195.   get enumeration() {
  2196.     var installLocations = [];
  2197.     for (var key in this._locations) 
  2198.       installLocations.push(InstallLocations.get(key));
  2199.     return new ArrayEnumerator(installLocations);
  2200.   },
  2201.   
  2202.   /**
  2203.    * Gets a named Install Location
  2204.    * @param   name
  2205.    *          The name of the Install Location to get
  2206.    */
  2207.   get: function(name) {
  2208.     return name in this._locations ? this._locations[name] : null;
  2209.   },
  2210.   
  2211.   /**
  2212.    * Registers an Install Location
  2213.    * @param   installLocation
  2214.    *          The Install Location to register
  2215.    */
  2216.   put: function(installLocation) {
  2217.     this._locations[installLocation.name] = installLocation;
  2218.   }
  2219. };
  2220.  
  2221. /**
  2222.  * Manages the Startup Cache. The Startup Cache is a representation
  2223.  * of the contents of extensions.cache, a list of all
  2224.  * items the Extension System knows about, whether or not they
  2225.  * are active or visible.
  2226.  */
  2227. var StartupCache = {
  2228.   /**
  2229.    * Location Name -> GUID hash of entries from the Startup Cache file
  2230.    * Each entry has the following properties:
  2231.    *  "descriptor"    The location on disk of the item
  2232.    *  "mtime"         The time the location was last modified
  2233.    *  "op"            Any pending operations on this item.
  2234.    *  "location"      The Install Location name where the item is installed.
  2235.    */
  2236.   entries: { },
  2237.  
  2238.   /**
  2239.    * Puts an entry into the Startup Cache
  2240.    * @param   installLocation
  2241.    *          The Install Location where the item is installed
  2242.    * @param   id
  2243.    *          The GUID of the item
  2244.    * @param   op
  2245.    *          The name of the operation to be performed
  2246.    * @param   shouldCreate
  2247.    *          Whether or not we should create a new entry for this item
  2248.    *          in the cache if one does not already exist. 
  2249.    */
  2250.   put: function(installLocation, id, op, shouldCreate) {
  2251.     var itemLocation = installLocation.getItemLocation(id);
  2252.  
  2253.     var descriptor = null;
  2254.     var mtime = null;
  2255.     if (itemLocation) {
  2256.       itemLocation.QueryInterface(nsILocalFile);
  2257.       descriptor = getDescriptorFromFile(itemLocation, installLocation);
  2258.       if (itemLocation.exists() && itemLocation.isDirectory())
  2259.         mtime = Math.floor(itemLocation.lastModifiedTime / 1000);
  2260.     }
  2261.  
  2262.     this._putRaw(installLocation.name, id, descriptor, mtime, op, shouldCreate);
  2263.   },
  2264.  
  2265.   /**
  2266.    * Private helper function for putting an entry into the Startup Cache
  2267.    * without relying on the presence of its associated nsIInstallLocation
  2268.    * instance.
  2269.    *
  2270.    * @param key
  2271.    *        The install location name.
  2272.    * @param id
  2273.    *        The ID of the item.
  2274.    * @param descriptor
  2275.    *        Value returned from absoluteDescriptor.  May be null, in which
  2276.    *        case the descriptor field is not updated.
  2277.    * @param mtime
  2278.    *        The last modified time of the item.  May be null, in which case the
  2279.    *        descriptor field is not updated.
  2280.    * @param op
  2281.    *        The OP code to store with the entry.
  2282.    * @param shouldCreate
  2283.    *        Boolean value indicating whether to create or delete the entry.
  2284.    */
  2285.   _putRaw: function(key, id, descriptor, mtime, op, shouldCreate) {
  2286.     if (!(key in this.entries))
  2287.       this.entries[key] = { };
  2288.     if (!(id in this.entries[key]))
  2289.       this.entries[key][id] = { };
  2290.     if (shouldCreate) {
  2291.       if (!this.entries[key][id]) 
  2292.         this.entries[key][id] = { };
  2293.  
  2294.       var entry = this.entries[key][id];
  2295.  
  2296.       if (descriptor)
  2297.         entry.descriptor = descriptor;
  2298.       if (mtime) 
  2299.         entry.mtime = mtime;
  2300.       entry.op = op;
  2301.       entry.location = key;
  2302.     }
  2303.     else
  2304.       this.entries[key][id] = null;
  2305.   },
  2306.   
  2307.   /**
  2308.    * Clears an entry from the Startup Cache
  2309.    * @param   installLocation
  2310.    *          The Install Location where item is installed
  2311.    * @param   id
  2312.    *          The GUID of the item.
  2313.    */
  2314.   clearEntry: function(installLocation, id) {
  2315.     var key = installLocation.name;
  2316.     if (key in this.entries && id in this.entries[key])
  2317.       this.entries[key][id] = null;
  2318.   },
  2319.   
  2320.   /**
  2321.    * Get all the startup cache entries for a particular ID.
  2322.    * @param   id
  2323.    *          The GUID of the item to locate.
  2324.    * @returns An array of Startup Cache entries for the specified ID.
  2325.    */
  2326.   findEntries: function(id) {
  2327.     var entries = [];
  2328.     for (var key in this.entries) {
  2329.       if (id in this.entries[key]) 
  2330.         entries.push(this.entries[key][id]);
  2331.     }
  2332.     return entries;
  2333.   },
  2334.  
  2335.   /**
  2336.    * Call a function on each entry.  The callback function takes a single
  2337.    * parameter, which is an entry object.
  2338.    */
  2339.   forEachEntry: function(callback) {
  2340.     for (var key in this.entries) {
  2341.       for (id in this.entries[key])
  2342.         callback(this.entries[key][id]);
  2343.     }
  2344.   },
  2345.   
  2346.   /** 
  2347.    * Read the Item-Change manifest file into a hash of properties.
  2348.    * The Item-Change manifest currently holds a list of paths, with the last
  2349.    * mtime for each path, and the GUID of the item at that path.
  2350.    */
  2351.   read: function() {
  2352.     var itemChangeManifest = getFile(KEY_PROFILEDIR, [FILE_EXTENSIONS_STARTUP_CACHE]);
  2353.     if (!itemChangeManifest.exists()) {
  2354.       // There is no change manifest for some reason, either we're in an initial
  2355.       // state or something went wrong with one of the other files and the
  2356.       // change manifest was removed. Return an empty dataset and rebuild.
  2357.       return;
  2358.     }
  2359.     var fis = Components.classes["@mozilla.org/network/file-input-stream;1"]
  2360.                         .createInstance(Components.interfaces.nsIFileInputStream);
  2361.     fis.init(itemChangeManifest, -1, -1, false);
  2362.     if (fis instanceof nsILineInputStream) {
  2363.       var line = { value: "" };
  2364.       var more = false;
  2365.       do {
  2366.         more = fis.readLine(line);
  2367.         if (line.value) {
  2368.           // The Item-Change manifest is formatted like so:
  2369.           //  (pd = descriptor)
  2370.           // location-key\tguid-of-item\tpd-to-extension1\tmtime-of-pd\tpending-op
  2371.           // location-key\tguid-of-item\tpd-to-extension2\tmtime-of-pd\tpending-op
  2372.           // ...
  2373.           // We hash on location-key first, because we don't want to have to 
  2374.           // spin up the main extensions datasource on every start to determine
  2375.           // the Install Location for an item.
  2376.           // We hash on guid second, because we want a way to quickly determine
  2377.           // item GUID during a check loop that runs on every startup.
  2378.           var parts = line.value.split("\t");
  2379.           var op = parts[4];
  2380.           this._putRaw(parts[0], parts[1], parts[2], parts[3], op, true);
  2381.           if (op)
  2382.             PendingOperations.addItem(op, { locationKey: parts[0], id: parts[1] });
  2383.         }
  2384.       }
  2385.       while (more);
  2386.     }
  2387.     fis.close();
  2388.   },
  2389.  
  2390.   /**
  2391.    * Writes the Startup Cache to disk
  2392.    */
  2393.   write: function() {
  2394.     var extensionsCacheFile = getFile(KEY_PROFILEDIR, [FILE_EXTENSIONS_STARTUP_CACHE]);
  2395.     var fos = openSafeFileOutputStream(extensionsCacheFile);
  2396.     for (var locationKey in this.entries) {
  2397.       for (var id in this.entries[locationKey]) {
  2398.         var entry = this.entries[locationKey][id];
  2399.         if (entry) {
  2400.           try {
  2401.             var itemLocation = getFileFromDescriptor(entry.descriptor, InstallLocations.get(locationKey));
  2402.  
  2403.             // Update our knowledge of this item's last-modified-time.
  2404.             // XXXdarin: this may cause us to miss changes in some cases.
  2405.             var itemMTime = 0;
  2406.             if (itemLocation.exists() && itemLocation.isDirectory())
  2407.               itemMTime = Math.floor(itemLocation.lastModifiedTime / 1000);
  2408.  
  2409.             // Each line in the startup cache manifest is in this form:
  2410.             // location-key\tid-of-item\tpd-to-extension1\tmtime-of-pd\tpending-op
  2411.             var line = locationKey + "\t" + id + "\t" + entry.descriptor + "\t" +
  2412.                        itemMTime + "\t" + entry.op + "\r\n";
  2413.             fos.write(line, line.length);
  2414.           }
  2415.           catch (e) {}
  2416.         }
  2417.       }
  2418.     }
  2419.     closeSafeFileOutputStream(fos);
  2420.   }
  2421. };
  2422.  
  2423. /**
  2424.  * Manages the Blocklist. The Blocklist is a representation of the contents of
  2425.  * blocklist.xml and allows us to remotely disable / re-enable blocklisted
  2426.  * items managed by the Extension Manager with an item's appDisabled property.
  2427.  */
  2428. var Blocklist = {
  2429.   /**
  2430.    * Extension ID -> array of Version Ranges
  2431.    * Each value in the version range array is a JS Object that has the
  2432.    * following properties:
  2433.    *   "minVersion"  The minimum version in a version range (default = 0)
  2434.    *   "maxVersion"  The maximum version in a version range (default = *)
  2435.    *   "targetApps"  Application ID -> array of Version Ranges
  2436.    *                 (default = current application ID)
  2437.    *                 Each value in the version range array is a JS Object that
  2438.    *                 has the following properties:
  2439.    *                   "minVersion"  The minimum version in a version range
  2440.    *                                 (default = 0)
  2441.    *                   "maxVersion"  The maximum version in a version range
  2442.    *                                 (default = *)
  2443.    */
  2444.   entries: null,
  2445.  
  2446.   notify: function() {
  2447.     if (getPref("getBoolPref", PREF_BLOCKLIST_ENABLED, true) == false)
  2448.       return;
  2449.  
  2450.     try {
  2451.       var dsURI = gPref.getCharPref(PREF_BLOCKLIST_URL);
  2452.     }
  2453.     catch (e) {
  2454.       LOG("Blocklist::notify: The " + PREF_BLOCKLIST_URL + " preference" + 
  2455.           " is missing!");
  2456.       return;
  2457.     }
  2458.  
  2459.     dsURI = dsURI.replace(/%APP_ID%/g, gApp.ID);
  2460.     dsURI = dsURI.replace(/%APP_VERSION%/g, gApp.version);
  2461.     // Verify that the URI is valid
  2462.     try {
  2463.       var uri = newURI(dsURI);
  2464.     }
  2465.     catch (e) {
  2466.       LOG("Blocklist::notify: There was an error creating the blocklist URI\r\n" + 
  2467.           "for: " + dsURI + ", error: " + e);
  2468.       return;
  2469.     }
  2470.  
  2471.     var request = Components.classes["@mozilla.org/xmlextras/xmlhttprequest;1"]
  2472.                             .createInstance(Components.interfaces.nsIXMLHttpRequest);
  2473.     request.open("GET", uri.spec, true);
  2474.     request.channel.notificationCallbacks = new BadCertHandler();
  2475.     request.overrideMimeType("text/xml");
  2476.     request.setRequestHeader("Cache-Control", "no-cache");
  2477.  
  2478.     var self = this;
  2479.     request.onerror = function(event) { self.onXMLError(event); };
  2480.     request.onload  = function(event) { self.onXMLLoad(event);  };
  2481.     request.send(null);
  2482.   },
  2483.  
  2484.   onXMLLoad: function(aEvent) {
  2485.     var request = aEvent.target;
  2486.     try {
  2487.       checkCert(request.channel);
  2488.     }
  2489.     catch (e) {
  2490.       LOG("Blocklist::onXMLLoad: " + e);
  2491.       return;
  2492.     }
  2493.     var responseXML = request.responseXML;
  2494.     if (!responseXML || responseXML.documentElement.namespaceURI == XMLURI_PARSE_ERROR ||
  2495.         (request.status != 200 && request.status != 0)) {
  2496.       LOG("Blocklist::onXMLLoad: there was an error during load");
  2497.       return;
  2498.     }
  2499.     var blocklistFile = getFile(KEY_PROFILEDIR, [FILE_BLOCKLIST]);
  2500.     if (blocklistFile.exists())
  2501.       blocklistFile.remove(false);
  2502.     var fos = openSafeFileOutputStream(blocklistFile);
  2503.     fos.write(request.responseText, request.responseText.length);
  2504.     closeSafeFileOutputStream(fos);
  2505.     this.entries = this._loadBlocklistFromFile(getFile(KEY_PROFILEDIR,
  2506.                                                        [FILE_BLOCKLIST]));
  2507.     var em = Components.classes["@mozilla.org/extensions/manager;1"]
  2508.                        .getService(Components.interfaces.nsIExtensionManager)
  2509.                        .QueryInterface(Components.interfaces.nsIExtensionManager_MOZILLA_1_8_BRANCH);
  2510.     em.checkForBlocklistChanges();
  2511.   },
  2512.  
  2513.   onXMLError: function(aEvent) {
  2514.     try {
  2515.       var request = aEvent.target;
  2516.       // the following may throw (e.g. a local file or timeout)
  2517.       var status = request.status;
  2518.     }
  2519.     catch (e) {
  2520.       request = aEvent.target.channel.QueryInterface(Components.interfaces.nsIRequest);
  2521.       status = request.status;
  2522.     }
  2523.     var statusText = request.statusText;
  2524.     // When status is 0 we don't have a valid channel.
  2525.     if (status == 0)
  2526.       statusText = "nsIXMLHttpRequest channel unavailable";
  2527.     LOG("Blocklist:onError: There was an error loading the blocklist file\r\n" + 
  2528.         statusText);
  2529.   },
  2530.  
  2531.   /**
  2532.    * The blocklist XML file looks something like this:
  2533.    *
  2534.    * <blocklist xmlns="http://www.mozilla.org/2006/addons-blocklist">
  2535.    *   <emItems>
  2536.    *     <emItem id="item_1@domain">
  2537.    *       <versionRange minVersion="1.0" maxVersion="2.0.*">
  2538.    *         <targetApplication id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}">
  2539.    *           <versionRange minVersion="1.5" maxVersion="1.5.*"/>
  2540.    *           <versionRange minVersion="1.7" maxVersion="1.7.*"/>
  2541.    *         </targetApplication>
  2542.    *         <targetApplication id="toolkit@mozilla.org">
  2543.    *           <versionRange minVersion="1.8" maxVersion="1.8.*"/>
  2544.    *         </targetApplication>
  2545.    *       </versionRange>
  2546.    *       <versionRange minVersion="3.0" maxVersion="3.0.*">
  2547.    *         <targetApplication id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}">
  2548.    *           <versionRange minVersion="1.5" maxVersion="1.5.*"/>
  2549.    *         </targetApplication>
  2550.    *         <targetApplication id="toolkit@mozilla.org">
  2551.    *           <versionRange minVersion="1.8" maxVersion="1.8.*"/>
  2552.    *         </targetApplication>
  2553.    *       </versionRange>
  2554.    *     </emItem>
  2555.    *     <emItem id="item_2@domain">
  2556.    *       <versionRange minVersion="3.1" maxVersion="4.*"/>
  2557.    *     </emItem>
  2558.    *     <emItem id="item_3@domain">
  2559.    *       <versionRange>
  2560.    *         <targetApplication id="{ec8030f7-c20a-464f-9b0e-13a3a9e97384}">
  2561.    *           <versionRange minVersion="1.5" maxVersion="1.5.*"/>
  2562.    *         </targetApplication>
  2563.    *       </versionRange>
  2564.    *     </emItem>
  2565.    *     <emItem id="item_4@domain">
  2566.    *       <versionRange>
  2567.    *         <targetApplication>
  2568.    *           <versionRange minVersion="1.5" maxVersion="1.5.*"/>
  2569.    *         </targetApplication>
  2570.    *       </versionRange>
  2571.    *     <emItem id="item_5@domain"/>
  2572.    *   </emItems>
  2573.    * </blocklist> 
  2574.    */
  2575.   _loadBlocklistFromFile: function(file) {
  2576.     if (getPref("getBoolPref", PREF_BLOCKLIST_ENABLED, true) == false) {
  2577.       LOG("Blocklist::_loadBlocklistFromFile: blocklist is disabled");
  2578.       return { };
  2579.     }
  2580.  
  2581.     if (!file.exists()) {
  2582.       LOG("Blocklist::_loadBlocklistFromFile: XML File does not exist");
  2583.       return { };
  2584.     }
  2585.  
  2586.     var result = { };
  2587.     var fileStream = Components.classes["@mozilla.org/network/file-input-stream;1"]
  2588.                                .createInstance(Components.interfaces.nsIFileInputStream);
  2589.     fileStream.init(file, MODE_RDONLY, PERMS_FILE, 0);
  2590.     try {
  2591.       var parser = Components.classes["@mozilla.org/xmlextras/domparser;1"]
  2592.                              .createInstance(Components.interfaces.nsIDOMParser);
  2593.       var doc = parser.parseFromStream(fileStream, "UTF-8", file.fileSize, "text/xml");
  2594.       if (doc.documentElement.namespaceURI != XMLURI_BLOCKLIST) {
  2595.         LOG("Blocklist::_loadBlocklistFromFile: aborting due to incorrect " +
  2596.             "XML Namespace.\r\nExpected: " + XMLURI_BLOCKLIST + "\r\n" +
  2597.             "Received: " + doc.documentElement.namespaceURI);
  2598.         return { };
  2599.       }
  2600.  
  2601.       const kELEMENT_NODE = Components.interfaces.nsIDOMNode.ELEMENT_NODE;
  2602.       var itemNodes = this._getItemNodes(doc.documentElement.childNodes);
  2603.       for (var i = 0; i < itemNodes.length; ++i) {
  2604.         var blocklistElement = itemNodes[i];
  2605.         if (blocklistElement.nodeType != kELEMENT_NODE ||
  2606.             blocklistElement.localName != "emItem")
  2607.           continue;
  2608.  
  2609.         blocklistElement.QueryInterface(Components.interfaces.nsIDOMElement);
  2610.         var versionNodes = blocklistElement.childNodes;
  2611.         var id = blocklistElement.getAttribute("id");
  2612.         result[id] = [];
  2613.         for (var x = 0; x < versionNodes.length; ++x) {
  2614.           var versionRangeElement = versionNodes[x];
  2615.           if (versionRangeElement.nodeType != kELEMENT_NODE ||
  2616.               versionRangeElement.localName != "versionRange")
  2617.             continue;
  2618.  
  2619.           result[id].push(new BlocklistItemData(versionRangeElement));
  2620.         }
  2621.         // if only the extension ID is specified block all versions of the
  2622.         // extension for the current application.
  2623.         if (result[id].length == 0)
  2624.           result[id].push(new BlocklistItemData(null));
  2625.       }
  2626.     }
  2627.     catch (e) {
  2628.       LOG("Blocklist::_loadBlocklistFromFile: Error constructing blocklist " + e);
  2629.       return { };
  2630.     }
  2631.     fileStream.close();
  2632.     return result;
  2633.   },
  2634.  
  2635.   _getItemNodes: function(deChildNodes) {
  2636.     const kELEMENT_NODE = Components.interfaces.nsIDOMNode.ELEMENT_NODE;
  2637.     for (var i = 0; i < deChildNodes.length; ++i) {
  2638.       var emItemsElement = deChildNodes[i];
  2639.       if (emItemsElement.nodeType == kELEMENT_NODE &&
  2640.           emItemsElement.localName == "emItems")
  2641.         return emItemsElement.childNodes;
  2642.     }
  2643.     return [ ];
  2644.   },
  2645.  
  2646.   _ensureBlocklist: function() {
  2647.     if (!this.entries)
  2648.       this.entries = this._loadBlocklistFromFile(getFile(KEY_PROFILEDIR, 
  2649.                                                          [FILE_BLOCKLIST]));
  2650.   }
  2651. };
  2652.  
  2653. /**
  2654.  * Helper for constructing a blocklist.
  2655.  */
  2656. function BlocklistItemData(versionRangeElement) {
  2657.   var versionRange = this.getBlocklistVersionRange(versionRangeElement);
  2658.   this.minVersion = versionRange.minVersion;
  2659.   this.maxVersion = versionRange.maxVersion;
  2660.   this.targetApps = { };
  2661.   var found = false;
  2662.  
  2663.   if (versionRangeElement) {
  2664.     for (var i = 0; i < versionRangeElement.childNodes.length; ++i) {
  2665.       var targetAppElement = versionRangeElement.childNodes[i];
  2666.       if (targetAppElement.nodeType != Components.interfaces.nsIDOMNode.ELEMENT_NODE ||
  2667.           targetAppElement.localName != "targetApplication")
  2668.         continue;
  2669.       found = true;
  2670.       // default to the current application if id is not provided.
  2671.       var appID = targetAppElement.hasAttribute("id") ? targetAppElement.getAttribute("id") : gApp.ID;
  2672.       this.targetApps[appID] = this.getBlocklistAppVersions(targetAppElement);
  2673.     }
  2674.   }
  2675.   // Default to all versions of the extension and the current application when
  2676.   // versionRange is not defined.
  2677.   if (!found)
  2678.     this.targetApps[gApp.ID] = this.getBlocklistAppVersions(null);
  2679. }
  2680.  
  2681. BlocklistItemData.prototype = {
  2682. /**
  2683.  * Retrieves a version range (e.g. minVersion and maxVersion) for a
  2684.  * blocklist item's targetApplication element.
  2685.  * @param   targetAppElement
  2686.  *          A targetApplication blocklist element.
  2687.  * @returns An array of JS objects with the following properties:
  2688.  *          "minVersion"  The minimum version in a version range (default = 0).
  2689.  *          "maxVersion"  The maximum version in a version range (default = *).
  2690.  */
  2691.   getBlocklistAppVersions: function(targetAppElement) {
  2692.     var appVersions = [ ];
  2693.     var found = false;
  2694.  
  2695.     if (targetAppElement) {
  2696.       for (var i = 0; i < targetAppElement.childNodes.length; ++i) {
  2697.         var versionRangeElement = targetAppElement.childNodes[i];
  2698.         if (versionRangeElement.nodeType != Components.interfaces.nsIDOMNode.ELEMENT_NODE ||
  2699.             versionRangeElement.localName != "versionRange")
  2700.           continue;
  2701.         found = true;
  2702.         appVersions.push(this.getBlocklistVersionRange(versionRangeElement));
  2703.       }
  2704.     }
  2705.     // return minVersion = 0 and maxVersion = * if not available
  2706.     if (!found)
  2707.       return [ this.getBlocklistVersionRange(null) ];
  2708.     return appVersions;
  2709.   },
  2710.  
  2711. /**
  2712.  * Retrieves a version range (e.g. minVersion and maxVersion) for a blocklist
  2713.  * versionRange element.
  2714.  * @param   versionRangeElement
  2715.  *          The versionRange blocklist element.
  2716.  * @returns A JS object with the following properties:
  2717.  *          "minVersion"  The minimum version in a version range (default = 0).
  2718.  *          "maxVersion"  The maximum version in a version range (default = *).
  2719.  */
  2720.   getBlocklistVersionRange: function(versionRangeElement) {
  2721.     var minVersion = "0";
  2722.     var maxVersion = "*";
  2723.     if (!versionRangeElement)
  2724.       return { minVersion: minVersion, maxVersion: maxVersion };
  2725.  
  2726.     if (versionRangeElement.hasAttribute("minVersion"))
  2727.       minVersion = versionRangeElement.getAttribute("minVersion");
  2728.     if (versionRangeElement.hasAttribute("maxVersion"))
  2729.       maxVersion = versionRangeElement.getAttribute("maxVersion");
  2730.  
  2731.     return { minVersion: minVersion, maxVersion: maxVersion };
  2732.   }
  2733. };
  2734.  
  2735. /**
  2736.  * Installs, manages and tracks compatibility for Extensions and Themes
  2737.  * @constructor
  2738.  */
  2739. function ExtensionManager() {
  2740.   gApp = Components.classes["@mozilla.org/xre/app-info;1"]
  2741.                    .getService(Components.interfaces.nsIXULAppInfo)
  2742.                    .QueryInterface(Components.interfaces.nsIXULRuntime);
  2743.   gOSTarget = gApp.OS;
  2744.   try {
  2745.     gXPCOMABI = gApp.XPCOMABI;
  2746.   } catch (ex) {
  2747.     // Provide a default for gXPCOMABI. It won't be compared to an
  2748.     // item's metadata (i.e. install.rdf can't specify e.g. WINNT_unknownABI
  2749.     // as targetPlatform), but it will be displayed in error messages and
  2750.     // transmitted to update URLs.
  2751.     gXPCOMABI = UNKNOWN_XPCOM_ABI;
  2752.   }
  2753.   gPref = Components.classes["@mozilla.org/preferences-service;1"]
  2754.                     .getService(Components.interfaces.nsIPrefBranch2);
  2755.  
  2756.   gOS = Components.classes["@mozilla.org/observer-service;1"]
  2757.                   .getService(Components.interfaces.nsIObserverService);
  2758.   gOS.addObserver(this, "xpcom-shutdown", false);
  2759.  
  2760.   gConsole = Components.classes["@mozilla.org/consoleservice;1"]
  2761.                        .getService(Components.interfaces.nsIConsoleService);  
  2762.   
  2763.   gRDF = Components.classes["@mozilla.org/rdf/rdf-service;1"]
  2764.                    .getService(Components.interfaces.nsIRDFService);
  2765.   gInstallManifestRoot = gRDF.GetResource(RDFURI_INSTALL_MANIFEST_ROOT);
  2766.   
  2767.   // Register Global Install Location
  2768.   var appGlobalExtensions = getDirNoCreate(KEY_APPDIR, [DIR_EXTENSIONS]);
  2769.   var priority = nsIInstallLocation.PRIORITY_APP_SYSTEM_GLOBAL;
  2770.   var globalLocation = new DirectoryInstallLocation(KEY_APP_GLOBAL, 
  2771.                                                     appGlobalExtensions, true,
  2772.                                                     priority);
  2773.   InstallLocations.put(globalLocation);
  2774.  
  2775.   // Register App-Profile Install Location
  2776.   var appProfileExtensions = getDirNoCreate(KEY_PROFILEDS, [DIR_EXTENSIONS]);
  2777.   var priority = nsIInstallLocation.PRIORITY_APP_PROFILE;
  2778.   var profileLocation = new DirectoryInstallLocation(KEY_APP_PROFILE, 
  2779.                                                      appProfileExtensions, false,
  2780.                                                      priority);
  2781.   InstallLocations.put(profileLocation);
  2782.  
  2783. //@line 2709 "/cygdrive/K/tinderbuild/src/flock/mozilla/toolkit/mozapps/extensions/src/nsExtensionManager.js.in"
  2784.   // Register HKEY_LOCAL_MACHINE Install Location
  2785.   InstallLocations.put(
  2786.       new WinRegInstallLocation("winreg-app-global",
  2787.                                 nsIWindowsRegKey.ROOT_KEY_LOCAL_MACHINE,
  2788.                                 true,
  2789.                                 nsIInstallLocation.PRIORITY_APP_SYSTEM_GLOBAL + 10));
  2790.  
  2791.   // Register HKEY_CURRENT_USER Install Location
  2792.   InstallLocations.put(
  2793.       new WinRegInstallLocation("winreg-app-user",
  2794.                                 nsIWindowsRegKey.ROOT_KEY_CURRENT_USER,
  2795.                                 false,
  2796.                                 nsIInstallLocation.PRIORITY_APP_SYSTEM_USER + 10));
  2797. //@line 2723 "/cygdrive/K/tinderbuild/src/flock/mozilla/toolkit/mozapps/extensions/src/nsExtensionManager.js.in"
  2798.  
  2799.   // Register Additional Install Locations
  2800.   var categoryManager = Components.classes["@mozilla.org/categorymanager;1"]
  2801.                                   .getService(Components.interfaces.nsICategoryManager);
  2802.   var locations = categoryManager.enumerateCategory(CATEGORY_INSTALL_LOCATIONS);
  2803.   while (locations.hasMoreElements()) {
  2804.     var entry = locations.getNext().QueryInterface(Components.interfaces.nsISupportsCString).data;
  2805.     var contractID = categoryManager.getCategoryEntry(CATEGORY_INSTALL_LOCATIONS, entry);
  2806.     var location = Components.classes[contractID].getService(nsIInstallLocation);
  2807.     InstallLocations.put(location);
  2808.   }
  2809. }
  2810.  
  2811. ExtensionManager.prototype = {
  2812.   /**
  2813.    * See nsIObserver.idl
  2814.    */
  2815.   observe: function(subject, topic, data) {
  2816.     switch (topic) {
  2817.     case "app-startup":
  2818.       gOS.addObserver(this, "profile-after-change", false);
  2819.       break;
  2820.     case "profile-after-change":
  2821.       this._profileSelected();
  2822.       break;
  2823.     case "quit-application-requested":
  2824.       this._confirmCancelDownloadsOnQuit(subject);
  2825.       break;
  2826.     case "offline-requested":
  2827.       this._confirmCancelDownloadsOnOffline(subject);
  2828.       break;
  2829.     case "xpcom-shutdown":
  2830.       this._shutdown();
  2831.       break;
  2832.     case "nsPref:changed":
  2833.       if (data == PREF_EM_LOGGING_ENABLED)
  2834.         this._loggingToggled();
  2835.       else if (data == PREF_EM_CHECK_COMPATIBILITY)
  2836.         this._checkCompatToggled();
  2837.       break;
  2838.     }
  2839.   },
  2840.   
  2841.   /**
  2842.    * Refresh the logging enabled global from preferences when the user changes
  2843.    * the preference settting.
  2844.    */
  2845.   _loggingToggled: function() {
  2846.     gLoggingEnabled = getPref("getBoolPref", PREF_EM_LOGGING_ENABLED, false);
  2847.   },
  2848.  
  2849.   /**
  2850.    * Enables or disables extensions that are incompatible depending upon the pref
  2851.    * setting for compatibility checking.
  2852.    */
  2853.   _checkCompatToggled: function() {
  2854.     gCheckCompatibility = getPref("getBoolPref", PREF_EM_CHECK_COMPATIBILITY, true);
  2855.     var ds = this.datasource;
  2856.  
  2857.     // Enumerate all items
  2858.     var ctr = getContainer(ds, ds._itemRoot);
  2859.     var elements = ctr.GetElements();
  2860.     while (elements.hasMoreElements()) {
  2861.       var itemResource = elements.getNext().QueryInterface(Components.interfaces.nsIRDFResource);
  2862.  
  2863.       // App disable or enable items as necessary
  2864.       // _appEnableItem and _appDisableItem will do nothing if the item is already
  2865.       // in the right state.
  2866.       id = stripPrefix(itemResource.Value, PREFIX_ITEM_URI);
  2867.       if (this._isUsableItem(id))
  2868.         this._appEnableItem(id);
  2869.       else
  2870.         this._appDisableItem(id);
  2871.     }
  2872.   },
  2873.  
  2874.   /**
  2875.    * Initialize the system after a profile has been selected.
  2876.    */  
  2877.   _profileSelected: function() {
  2878.     // Tell the Chrome Registry which Skin to select
  2879.     try {
  2880.       if (gPref.getBoolPref(PREF_DSS_SWITCHPENDING)) {
  2881.         var toSelect = gPref.getCharPref(PREF_DSS_SKIN_TO_SELECT);
  2882.         gPref.setCharPref(PREF_GENERAL_SKINS_SELECTEDSKIN, toSelect);
  2883.         gPref.clearUserPref(PREF_DSS_SWITCHPENDING);
  2884.         gPref.clearUserPref(PREF_DSS_SKIN_TO_SELECT);
  2885.       }
  2886.     }
  2887.     catch (e) {
  2888.     }
  2889.     gLoggingEnabled = getPref("getBoolPref", PREF_EM_LOGGING_ENABLED, false);
  2890.     gCheckCompatibility = getPref("getBoolPref", PREF_EM_CHECK_COMPATIBILITY, true);
  2891.     gPref.addObserver("extensions.", this, false);
  2892.   },
  2893.  
  2894.   /**
  2895.    * Notify user that there are new addons updates
  2896.    */
  2897.   _showUpdatesWindow: function() {
  2898.     if (!getPref("getBoolPref", PREF_UPDATE_NOTIFYUSER, false))
  2899.       return;
  2900.  
  2901.     const EMURL = "chrome://mozapps/content/extensions/extensions.xul";
  2902.     const EMFEATURES = "chrome,centerscreen,extra-chrome,dialog,resizable,modal";
  2903.  
  2904.     var ww = Components.classes["@mozilla.org/embedcomp/window-watcher;1"]
  2905.                        .getService(Components.interfaces.nsIWindowWatcher);
  2906.     var param = Components.classes["@mozilla.org/supports-array;1"]
  2907.                           .createInstance(Components.interfaces.nsISupportsArray);
  2908.     var arg = Components.classes["@mozilla.org/supports-string;1"]
  2909.                         .createInstance(Components.interfaces.nsISupportsString);
  2910.     arg.data = "updates-only";
  2911.     param.AppendElement(arg);
  2912.     ww.openWindow(null, EMURL, null, EMFEATURES, param);
  2913.   },
  2914.  
  2915.   /**
  2916.    * Clean up on application shutdown to avoid leaks.
  2917.    */
  2918.   _shutdown: function() {
  2919.     gOS.removeObserver(this, "xpcom-shutdown");
  2920.  
  2921.     // Release strongly held services.
  2922.     gOS = null;
  2923.     if (this._ds && gRDF) 
  2924.       gRDF.UnregisterDataSource(this._ds)
  2925.     gRDF = null;
  2926.     if (gPref)
  2927.       gPref.removeObserver("extensions.", this);
  2928.     gPref = null;
  2929.     gConsole = null;
  2930.     gVersionChecker = null;
  2931.     gInstallManifestRoot = null;
  2932.     gApp = null;
  2933.   },
  2934.   
  2935.   /**
  2936.    * Check for presence of critical Extension system files. If any is missing, 
  2937.    * delete the others and signal that the system needs to rebuild them all
  2938.    * from scratch.
  2939.    * @returns true if any critical file is missing and the system needs to
  2940.    *          be rebuilt, false otherwise.
  2941.    */
  2942.   _ensureDatasetIntegrity: function () {
  2943.     var extensionsDS = getFile(KEY_PROFILEDIR, [FILE_EXTENSIONS]);
  2944.     var extensionsINI = getFile(KEY_PROFILEDIR, [FILE_EXTENSION_MANIFEST]);
  2945.     var extensionsCache = getFile(KEY_PROFILEDIR, [FILE_EXTENSIONS_STARTUP_CACHE]);
  2946.     
  2947.     var dsExists = extensionsDS.exists();
  2948.     var iniExists = extensionsINI.exists();
  2949.     var cacheExists = extensionsCache.exists();
  2950.  
  2951.     if (dsExists && iniExists && cacheExists)
  2952.       return false;
  2953.  
  2954.     // If any of the files are missing, remove the .ini file
  2955.     if (iniExists)
  2956.       extensionsINI.remove(false);
  2957.  
  2958.     // If the extensions datasource is missing remove the .cache file if it exists
  2959.     if (!dsExists && cacheExists)
  2960.       extensionsCache.remove(false);
  2961.  
  2962.     return true;
  2963.   },
  2964.   
  2965.   /**
  2966.    * See nsIExtensionManager.idl
  2967.    */
  2968.   start: function(commandLine) {
  2969.     var isDirty = false;
  2970.     var forceAutoReg = false;
  2971.     
  2972.     this._showUpdatesWindow();
  2973.     
  2974.     // Somehow the component list went away, and for that reason the new one
  2975.     // generated by this function is going to result in a different compreg.
  2976.     // We must force a restart.
  2977.     var componentList = getFile(KEY_PROFILEDIR, [FILE_EXTENSION_MANIFEST]);
  2978.     if (!componentList.exists())
  2979.       forceAutoReg = true;
  2980.     
  2981.     // Check for missing manifests - e.g. missing extensions.ini, missing
  2982.     // extensions.cache, extensions.rdf etc. If any of these files 
  2983.     // is missing then we are in some kind of weird or initial state and need
  2984.     // to force a regeneration.
  2985.     if (this._ensureDatasetIntegrity())
  2986.       isDirty = true;
  2987.  
  2988.     // Configure any items that are being installed, uninstalled or upgraded 
  2989.     // by being added, removed or modified by another process. We must do this
  2990.     // on every startup since there is no way we can tell if this has happened
  2991.     // or not!
  2992.     if (this._checkForFileChanges())
  2993.       isDirty = true;
  2994.  
  2995.     if (PendingOperations.size != 0)
  2996.       isDirty = true;
  2997.  
  2998.     // Extension Changes
  2999.     if (isDirty) {
  3000.       var needsRestart = this._finishOperations();
  3001.  
  3002.       if (forceAutoReg) {
  3003.         this._extensionListChanged = true;
  3004.         needsRestart = true;
  3005.       }
  3006.       return needsRestart;
  3007.     }
  3008.       
  3009.     this._startTimers();
  3010.  
  3011.     return false;
  3012.   },
  3013.   
  3014.   /**
  3015.    * Begins all background update check timers
  3016.    */
  3017.   _startTimers: function() {
  3018.     // Register a background update check timer
  3019.     var tm = 
  3020.         Components.classes["@mozilla.org/updates/timer-manager;1"]
  3021.                   .getService(Components.interfaces.nsIUpdateTimerManager);
  3022.     var interval = getPref("getIntPref", PREF_EM_UPDATE_INTERVAL, 86400); 
  3023.     tm.registerTimer("addon-background-update-timer", this, interval);
  3024.  
  3025.     interval = getPref("getIntPref", PREF_BLOCKLIST_INTERVAL, 86400); 
  3026.     tm.registerTimer("blocklist-background-update-timer", Blocklist, interval);
  3027.   },
  3028.   
  3029.   /**
  3030.    * Notified when a timer fires
  3031.    * @param   timer
  3032.    *          The timer that fired
  3033.    */
  3034.   notify: function(timer) {
  3035.     if (!getPref("getBoolPref", PREF_EM_UPDATE_ENABLED, true))
  3036.       return;
  3037.  
  3038.     var items = this.getItemList(nsIUpdateItem.TYPE_ADDON, { });
  3039.  
  3040.     var updater = new ExtensionItemUpdater(gApp.ID, gApp.version, this);
  3041.     updater._background = true;
  3042.     updater.checkForUpdates(items, items.length, false, null);
  3043.   },
  3044.   
  3045.   /**
  3046.    * See nsIExtensionManager.idl
  3047.    */
  3048.   handleCommandLineArgs: function(commandLine) {
  3049.     try {
  3050.       var globalExtension = commandLine.handleFlagWithParam("install-global-extension", false);
  3051.       if (globalExtension) {
  3052.         var file = commandLine.resolveFile(globalExtension);
  3053.         this._installGlobalItem(file);
  3054.       }
  3055.       var globalTheme = commandLine.handleFlagWithParam("install-global-theme", false);
  3056.       if (globalTheme) {
  3057.         file = commandLine.resolveFile(globalTheme);
  3058.         this._installGlobalItem(file);
  3059.       }
  3060.     }
  3061.     catch (e) { 
  3062.       LOG("ExtensionManager:handleCommandLineArgs - failure, catching exception - lineno: " +
  3063.           e.lineNumber + " - file: " + e.fileName + " - " + e);
  3064.     }
  3065.     commandLine.preventDefault = true;
  3066.   },
  3067.  
  3068.   /**
  3069.    * Installs an XPI/JAR file into the KEY_APP_GLOBAL install location.
  3070.    * @param   file
  3071.    *          The XPI/JAR file to extract
  3072.    */
  3073.   _installGlobalItem: function(file) {
  3074.     if (!file || !file.exists())
  3075.       throw new Error("Unable to find the file specified on the command line!");
  3076. //@line 3002 "/cygdrive/K/tinderbuild/src/flock/mozilla/toolkit/mozapps/extensions/src/nsExtensionManager.js.in"
  3077.     // make sure the file is local on Windows
  3078.     file.normalize();
  3079.     if (file.path[1] != ':')
  3080.       throw new Error("Can't install global chrome from non-local file "+file.path);
  3081. //@line 3007 "/cygdrive/K/tinderbuild/src/flock/mozilla/toolkit/mozapps/extensions/src/nsExtensionManager.js.in"
  3082.     var installManifestFile = extractRDFFileToTempDir(file, FILE_INSTALL_MANIFEST, true);
  3083.     if (!installManifestFile.exists())
  3084.       throw new Error("The package is missing an install manifest!");
  3085.     var installManifest = getInstallManifest(installManifestFile);
  3086.     installManifestFile.remove(false);
  3087.     var installData = this._getInstallData(installManifest);
  3088.     var installer = new Installer(installManifest, installData.id,
  3089.                                   InstallLocations.get(KEY_APP_GLOBAL),
  3090.                                   installData.type);
  3091.     installer._installExtensionFiles(file);
  3092.     if (installData.type == nsIUpdateItem.TYPE_THEME)
  3093.       installer.upgradeThemeChrome();
  3094.     else
  3095.       installer.upgradeExtensionChrome();
  3096.   },
  3097.  
  3098.   /**
  3099.    * Check to see if a file is a XPI/JAR file that the user dropped into this
  3100.    * Install Location. (i.e. a XPI that is not a staged XPI from an install 
  3101.    * transaction that is currently in operation). 
  3102.    * @param   file
  3103.    *          The XPI/JAR file to configure
  3104.    * @param   location
  3105.    *          The Install Location where this file was found.
  3106.    * @returns A nsIUpdateItem representing the dropped XPI if this file was a 
  3107.    *          XPI/JAR that needs installation, null otherwise.
  3108.    */
  3109.   _getItemForDroppedFile: function(file, location) {
  3110.     if (fileIsItemPackage(file)) {
  3111.       // We know nothing about this item, it is not something we've
  3112.       // staged in preparation for finalization, so assume it's something
  3113.       // the user dropped in.
  3114.       LOG("A Item Package appeared at: " + file.path + " that we know " + 
  3115.           "nothing about, assuming it was dropped in by the user and " + 
  3116.           "configuring for installation now. Location Key: " + location.name);
  3117.  
  3118.       var installManifestFile = extractRDFFileToTempDir(file, FILE_INSTALL_MANIFEST, true);
  3119.       if (!installManifestFile.exists())
  3120.         return null;
  3121.       var installManifest = getInstallManifest(installManifestFile);
  3122.       installManifestFile.remove(false);
  3123.       var ds = this.datasource;
  3124.       var installData = this._getInstallData(installManifest);
  3125.       var targetAppInfo = ds.getTargetApplicationInfo(installData.id, installManifest);
  3126.       return makeItem(installData.id,
  3127.                       installData.version,
  3128.                       location.name,
  3129.                       targetAppInfo ? targetAppInfo.minVersion : "",
  3130.                       targetAppInfo ? targetAppInfo.maxVersion : "",
  3131.                       getManifestProperty(installManifest, "name"),
  3132.                       "", /* XPI Update URL */
  3133.                       "", /* XPI Update Hash */
  3134.                       getManifestProperty(installManifest, "iconURL"),
  3135.                       getManifestProperty(installManifest, "updateURL"),
  3136.                       installData.type);
  3137.     }
  3138.     return null;
  3139.   },
  3140.   
  3141.   /**
  3142.    * Check for changes to items that were made independently of the Extension 
  3143.    * Manager, e.g. items were added or removed from a Install Location or items
  3144.    * in an Install Location changed. 
  3145.    */
  3146.   _checkForFileChanges: function() {
  3147.     var em = this;
  3148.     /** 
  3149.      * Configure an item that was installed or upgraded by another process
  3150.      * so that |_finishOperations| can properly complete processing and 
  3151.      * registration. 
  3152.      * As this is the only point at which we can reliably know the Install
  3153.      * Location of this item, we use this as an opportunity to:
  3154.      * 1. Check that this item is compatible with this Firefox version.
  3155.      * 2. If it is, configure the item by using the supplied callback.
  3156.      *    We do not do any special handling in the case that the item is
  3157.      *    not compatible with this version other than to simply not register
  3158.      *    it and log that fact - there is no "phone home" check for updates. 
  3159.      *    It may or may not make sense to do this, but for now we'll just
  3160.      *    not register.
  3161.      * @param   id
  3162.      *          The GUID of the item to validate and configure.
  3163.      * @param   location
  3164.      *          The Install Location where this item is installed.
  3165.      * @param   callback
  3166.      *          The callback that configures the item for installation upon
  3167.      *          successful validation.
  3168.      */      
  3169.     function installItem(id, location, callback) {
  3170.       // As this is the only pint at which we reliably know the installation
  3171.       var installRDF = location.getItemFile(id, FILE_INSTALL_MANIFEST);
  3172.       if (installRDF.exists()) {
  3173.         LOG("Item Installed/Upgraded at Install Location: " + location.name + 
  3174.             " Item ID: " + id + ", attempting to register...");
  3175.         var installManifest = getInstallManifest(installRDF);
  3176.         var installData = em._getInstallData(installManifest);
  3177.         if (installData.error == INSTALLERROR_SUCCESS) {
  3178.           LOG("... success, item is compatible");
  3179.           callback(installManifest, installData.id, location, installData.type);
  3180.         }
  3181.         else if (installData.error == INSTALLERROR_INCOMPATIBLE_VERSION) {
  3182.           LOG("... success, item installed but is not compatible");
  3183.           callback(installManifest, installData.id, location, installData.type);
  3184.           em._appDisableItem(id);
  3185.         }
  3186.         else if (installData.error == INSTALLERROR_BLOCKLISTED) {
  3187.           LOG("... success, item installed but is blocklisted");
  3188.           callback(installManifest, installData.id, location, installData.type);
  3189.           em._appDisableItem(id);
  3190.         }
  3191.         else {
  3192.           /**
  3193.            * Turns an error code into a message for logging
  3194.            * @param   error
  3195.            *          an Install Error code
  3196.            * @returns A string message to be logged.
  3197.            */
  3198.           function translateErrorMessage(error) {
  3199.             switch (error) {
  3200.             case INSTALLERROR_INVALID_GUID:
  3201.               return "Invalid GUID";
  3202.             case INSTALLERROR_INVALID_VERSION:
  3203.               return "Invalid Version";
  3204.             case INSTALLERROR_INCOMPATIBLE_VERSION:
  3205.               return "Incompatible Version";
  3206.             case INSTALLERROR_INCOMPATIBLE_PLATFORM:
  3207.               return "Incompatible Platform";
  3208.             }
  3209.           }
  3210.           LOG("... failure, item is not compatible, error: " + 
  3211.               translateErrorMessage(installData.error));
  3212.  
  3213.           // Add the item to the Startup Cache anyway, so we don't re-detect it
  3214.           // every time the app starts.
  3215.           StartupCache.put(location, id, OP_NONE, true);
  3216.         }
  3217.       }      
  3218.     }
  3219.   
  3220.     /**
  3221.      * Determines if an item can be used based on whether or not the install
  3222.      * location of the "item" has an equal or higher priority than the install
  3223.      * location where another version may live.
  3224.      * @param   id
  3225.      *          The GUID of the item being installed.
  3226.      * @param   location
  3227.      *          The location where an item is to be installed.
  3228.      * @returns true if the item can be installed at that location, false 
  3229.      *          otherwise.
  3230.      */
  3231.     function canUse(id, location) {
  3232.       for (var locationKey in StartupCache.entries) {
  3233.         if (locationKey != location.name && 
  3234.             id in StartupCache.entries[locationKey]) {
  3235.           if (StartupCache.entries[locationKey][id]) {
  3236.             var oldInstallLocation = InstallLocations.get(locationKey);
  3237.             if (oldInstallLocation.priority <= location.priority)
  3238.               return false;
  3239.           }
  3240.         }
  3241.       }
  3242.       return true;
  3243.     }
  3244.     
  3245.     /** 
  3246.       * Gets a Dialog Param Block loaded with a set of strings to initialize the
  3247.       * XPInstall Confirmation Dialog.
  3248.       * @param   strings
  3249.       *          An array of strings
  3250.       * @returns A nsIDialogParamBlock loaded with the strings and dialog state.
  3251.       */
  3252.     function getParamBlock(strings) {
  3253.       var dpb = Components.classes["@mozilla.org/embedcomp/dialogparam;1"]
  3254.                           .createInstance(Components.interfaces.nsIDialogParamBlock);
  3255.       // OK and Cancel Buttons
  3256.       dpb.SetInt(0, 2);
  3257.       // Number of Strings
  3258.       dpb.SetInt(1, strings.length);
  3259.       dpb.SetNumberStrings(strings.length);
  3260.       // Add Strings
  3261.       for (var i = 0; i < strings.length; ++i)
  3262.         dpb.SetString(i, strings[i]);
  3263.       
  3264.       var supportsString = Components.classes["@mozilla.org/supports-string;1"]
  3265.                                      .createInstance(Components.interfaces.nsISupportsString);
  3266.       var bundle = BundleManager.getBundle(URI_EXTENSIONS_PROPERTIES);
  3267.       supportsString.data = bundle.GetStringFromName("droppedInWarning");
  3268.       var objs = Components.classes["@mozilla.org/array;1"]
  3269.                            .createInstance(Components.interfaces.nsIMutableArray);
  3270.       objs.appendElement(supportsString, false);
  3271.       dpb.objects = objs;
  3272.       return dpb;        
  3273.     }
  3274.  
  3275.     /**
  3276.      * Installs a set of files which were dropped into an install location by 
  3277.      * the user, only after user confirmation.
  3278.      * @param   droppedInFiles
  3279.      *          An array of JS objects with the following properties:
  3280.      *          "file"      The nsILocalFile where the XPI lives
  3281.      *          "location"  The Install Location where the XPI was found. 
  3282.      * @param   xpinstallStrings
  3283.      *          An array of strings used to initialize the XPInstall Confirm 
  3284.      *          dialog.
  3285.      */ 
  3286.     function installDroppedInFiles(droppedInFiles, xpinstallStrings) {
  3287.       if (droppedInFiles.length == 0) 
  3288.         return;
  3289.         
  3290.       var dpb = getParamBlock(xpinstallStrings);
  3291.       var ifptr = Components.classes["@mozilla.org/supports-interface-pointer;1"]
  3292.                             .createInstance(Components.interfaces.nsISupportsInterfacePointer);
  3293.       ifptr.data = dpb;
  3294.       ifptr.dataIID = Components.interfaces.nsIDialogParamBlock;
  3295.       var ww = Components.classes["@mozilla.org/embedcomp/window-watcher;1"]
  3296.                           .getService(Components.interfaces.nsIWindowWatcher);
  3297.       ww.openWindow(null, URI_XPINSTALL_CONFIRM_DIALOG, 
  3298.                     "", "chrome,centerscreen,modal,dialog,titlebar", ifptr);
  3299.       if (!dpb.GetInt(0)) {
  3300.         // User said OK - install items
  3301.         for (var i = 0; i < droppedInFiles.length; ++i) {
  3302.           em.installItemFromFile(droppedInFiles[i].file, 
  3303.                                  droppedInFiles[i].location.name);
  3304.           // We are responsible for cleaning up this file
  3305.           droppedInFiles[i].file.remove(false);
  3306.         }
  3307.       }
  3308.       else {
  3309.         for (i = 0; i < droppedInFiles.length; ++i) {
  3310.           // We are responsible for cleaning up this file
  3311.           droppedInFiles[i].file.remove(false);
  3312.         }
  3313.       }
  3314.     }
  3315.     
  3316.     var isDirty = false;
  3317.     var ignoreMTimeChanges = getPref("getBoolPref", PREF_EM_IGNOREMTIMECHANGES,
  3318.                                      false);
  3319.     StartupCache.read();
  3320.     
  3321.     // Array of objects with 'location' and 'id' properties to maybe install.
  3322.     var newItems = [];
  3323.  
  3324.     var droppedInFiles = [];
  3325.     var xpinstallStrings = [];
  3326.     
  3327.     // Enumerate over the install locations from low to high priority.  The
  3328.     // enumeration returned is pre-sorted.
  3329.     var installLocations = this.installLocations;
  3330.     while (installLocations.hasMoreElements()) {
  3331.       var location = installLocations.getNext().QueryInterface(nsIInstallLocation);
  3332.  
  3333.       // Hash the set of items actually held by the Install Location.  
  3334.       var actualItems = { };
  3335.       var entries = location.itemLocations;
  3336.       while (true) {
  3337.         var entry = entries.nextFile;
  3338.         if (!entry)
  3339.           break;
  3340.  
  3341.         // Is this location a valid item? It must be a directory, and contain
  3342.         // an install.rdf manifest:
  3343.         if (entry.isDirectory()) {
  3344.           var installRDF = entry.clone();
  3345.           installRDF.append(FILE_INSTALL_MANIFEST);
  3346.  
  3347.           var id = location.getIDForLocation(entry);
  3348.           if (!id || (!installRDF.exists() && 
  3349.                       !location.itemIsManagedIndependently(id)))
  3350.             continue;
  3351.  
  3352.           actualItems[id] = entry;
  3353.         }
  3354.         else {
  3355.           // Check to see if this file is a XPI/JAR dropped into this dir
  3356.           // by the user, installing it if necessary. We do this here rather
  3357.           // than separately in |_finishOperations| because I don't want to
  3358.           // walk these lists multiple times on every startup.
  3359.           var item = this._getItemForDroppedFile(entry, location);
  3360.           if (item) {
  3361.             droppedInFiles.push({ file: entry, location: location });
  3362.  
  3363.             var zipReader = Components.classes["@mozilla.org/libjar/zip-reader;1"]
  3364.                                       .createInstance(Components.interfaces.nsIZipReader);
  3365.             zipReader.init(entry);
  3366.             var prettyName = "";
  3367.             try {
  3368.               var jar = zipReader.QueryInterface(Components.interfaces.nsIJAR);
  3369.               var principal = { };
  3370.               var certPrincipal = zipReader.getCertificatePrincipal(null, principal);
  3371.               // XXXbz This string could be empty.  This needs better
  3372.               // UI to present principal.value.certificate's subject.
  3373.               prettyName = principal.value.prettyName;
  3374.             }
  3375.             catch (e) { }
  3376.             xpinstallStrings = xpinstallStrings.concat([item.name, 
  3377.                                                         getURLSpecFromFile(entry),
  3378.                                                         item.iconURL, 
  3379.                                                         prettyName]);
  3380.             isDirty = true;
  3381.           }
  3382.         }
  3383.       }
  3384.       
  3385.       if (location.name in StartupCache.entries) {
  3386.         // Look for items that have been uninstalled by removing their directory.
  3387.         for (var id in StartupCache.entries[location.name]) {
  3388.           if (!StartupCache.entries[location.name] ||
  3389.               !StartupCache.entries[location.name][id]) 
  3390.             continue;
  3391.  
  3392.           // Force _finishOperations to run if we have enabled or disabled items.
  3393.           // XXXdarin this should be unnecessary now that we check
  3394.           // PendingOperations.size in start()
  3395.           if (StartupCache.entries[location.name][id].op == OP_NEEDS_ENABLE ||
  3396.               StartupCache.entries[location.name][id].op == OP_NEEDS_DISABLE)
  3397.             isDirty = true;
  3398.           
  3399.           if (!(id in actualItems) && 
  3400.               StartupCache.entries[location.name][id].op != OP_NEEDS_UNINSTALL &&
  3401.               StartupCache.entries[location.name][id].op != OP_NEEDS_INSTALL &&
  3402.               StartupCache.entries[location.name][id].op != OP_NEEDS_UPGRADE) {
  3403.             // We have an entry for this id in the Extensions database, for this 
  3404.             // install location, but it no longer exists in the Install Location. 
  3405.             // We can infer from this that the item has been removed, so uninstall
  3406.             // it properly. 
  3407.             if (canUse(id, location)) {
  3408.               LOG("Item Uninstalled via file removal from: " + StartupCache.entries[location.name][id].descriptor + 
  3409.                   " Item ID: " + id + " Location Key: " + location.name + ", uninstalling item.");
  3410.               
  3411.               // Load the Extensions Datasource and force this item into the visible
  3412.               // items list if it is not already. This allows us to handle the case 
  3413.               // where there is an entry for an item in the Startup Cache but not
  3414.               // in the extensions.rdf file - in that case the item will not be in
  3415.               // the visible list and calls to |getInstallLocation| will mysteriously
  3416.               // fail.
  3417.               this.datasource.updateVisibleList(id, location.name, false);
  3418.               this.uninstallItem(id);
  3419.               isDirty = true;
  3420.             }
  3421.           }
  3422.           else if (!ignoreMTimeChanges) {
  3423.             // Look for items whose mtime has changed, and as such we can assume 
  3424.             // they have been "upgraded".
  3425.             var lf = { path: StartupCache.entries[location.name][id].descriptor };
  3426.             try {
  3427.                lf = getFileFromDescriptor(StartupCache.entries[location.name][id].descriptor, location);
  3428.             }
  3429.             catch (e) { }
  3430.  
  3431.             if (lf.exists && lf.exists()) {
  3432.               var actualMTime = Math.floor(lf.lastModifiedTime / 1000);
  3433.               if (actualMTime != StartupCache.entries[location.name][id].mtime) {
  3434.                 LOG("Item Location path changed: " + lf.path + " Item ID: " + 
  3435.                     id + " Location Key: " + location.name + ", attempting to upgrade item...");
  3436.                 if (canUse(id, location)) {
  3437.                   installItem(id, location, 
  3438.                               function(installManifest, id, location, type) {
  3439.                                 em._upgradeItem(installManifest, id, location, 
  3440.                                                 type);
  3441.                               });
  3442.                   isDirty = true;
  3443.                 }
  3444.               }
  3445.             }
  3446.             else {
  3447.               isDirty = true;
  3448.               LOG("Install Location returned a missing or malformed item path! " + 
  3449.                   "Item Path: " + lf.path + ", Location Key: " + location.name + 
  3450.                   " Item ID: " + id);
  3451.               if (canUse(id, location)) {
  3452.                 // Load the Extensions Datasource and force this item into the visible
  3453.                 // items list if it is not already. This allows us to handle the case 
  3454.                 // where there is an entry for an item in the Startup Cache but not
  3455.                 // in the extensions.rdf file - in that case the item will not be in
  3456.                 // the visible list and calls to |getInstallLocation| will mysteriously
  3457.                 // fail.
  3458.                 this.datasource.updateVisibleList(id, location.name, false);
  3459.                 this.uninstallItem(id);
  3460.               }
  3461.             }
  3462.           }
  3463.         }
  3464.       }
  3465.  
  3466.       // Look for items that have been installed by appearing in the location.
  3467.       for (var id in actualItems) {
  3468.         if (!(location.name in StartupCache.entries) || 
  3469.             !(id in StartupCache.entries[location.name]) ||
  3470.             !StartupCache.entries[location.name][id]) {
  3471.           // Remember that we've seen this item
  3472.           StartupCache.put(location, id, OP_NONE, true);
  3473.           // Push it on the stack of items to maybe install later
  3474.           newItems.push({location: location, id: id});
  3475.         }
  3476.       }
  3477.     }
  3478.  
  3479.     // Process any newly discovered items.  We do this here instead of in the
  3480.     // previous loop so that we can be sure that we have a fully populated
  3481.     // StartupCache.
  3482.     for (var i = 0; i < newItems.length; ++i) {
  3483.       var id = newItems[i].id;
  3484.       var location = newItems[i].location;
  3485.       if (canUse(id, location)) {
  3486.         LOG("Item Installed via directory addition to Install Location: " + 
  3487.             location.name + " Item ID: " + id + ", attempting to register...");
  3488.         installItem(id, location, 
  3489.                     function(installManifest, id, location, type) { 
  3490.                       em._configureForthcomingItem(installManifest, id, location, 
  3491.                                                    type);
  3492.                     });
  3493.         // Disable add-ons on install when the InstallDisabled file exists.
  3494.         // This is so Talkback will be disabled on a subset of installs.
  3495.         var installDisabled = location.getItemFile(id, "InstallDisabled");
  3496.         if (installDisabled.exists())
  3497.           em.disableItem(id);
  3498.         isDirty = true;
  3499.       }
  3500.     }
  3501.  
  3502.     // Ask the user if they want to install the dropped items, for security
  3503.     // purposes.
  3504.     installDroppedInFiles(droppedInFiles, xpinstallStrings);
  3505.     
  3506.     return isDirty;
  3507.   },
  3508.   
  3509.   /**
  3510.    * Upgrades contents.rdf files to chrome.manifest files for any existing
  3511.    * Extensions and Themes.
  3512.    * @returns true if actions were performed that require a restart, false 
  3513.    *          otherwise.
  3514.    */
  3515.   _upgradeChrome: function() {
  3516.     if (inSafeMode())
  3517.       return false;
  3518.  
  3519.     var checkForNewChrome = false;
  3520.     var ds = this.datasource;
  3521.     // If we have extensions that were installed before the new flat chrome
  3522.     // manifests, and are still valid, we need to manually create the flat
  3523.     // manifest files.
  3524.     var extensions = this._getActiveItems(nsIUpdateItem.TYPE_EXTENSION +
  3525.                                           nsIUpdateItem.TYPE_LOCALE +
  3526.                                           nsIUpdateItem.TYPE_PLUGIN);
  3527.     for (var i = 0; i < extensions.length; ++i) {
  3528.       var e = extensions[i];
  3529.       var itemLocation = e.location.getItemLocation(e.id);
  3530.       var manifest = itemLocation.clone();
  3531.       manifest.append(FILE_CHROME_MANIFEST);
  3532.       if (!manifest.exists()) {
  3533.         var installRDF = itemLocation.clone();
  3534.         installRDF.append(FILE_INSTALL_MANIFEST);
  3535.         var installLocation = this.getInstallLocation(e.id);
  3536.         if (installLocation && installRDF.exists()) {
  3537.           var itemLocation = installLocation.getItemLocation(e.id);
  3538.           if (itemLocation.exists() && itemLocation.isDirectory()) {
  3539.             var installer = new Installer(ds, e.id, installLocation, 
  3540.                                           nsIUpdateItem.TYPE_EXTENSION);
  3541.             installer.upgradeExtensionChrome();
  3542.           }
  3543.         }
  3544.         else {
  3545.           ds.removeItemMetadata(e.id);
  3546.           ds.removeItemFromContainer(e.id);
  3547.         }
  3548.  
  3549.         checkForNewChrome = true;
  3550.       }
  3551.     }
  3552.  
  3553.     var themes = this._getActiveItems(nsIUpdateItem.TYPE_THEME);
  3554.     // If we have themes that were installed before the new flat chrome
  3555.     // manifests, and are still valid, we need to manually create the flat
  3556.     // manifest files.
  3557.     for (i = 0; i < themes.length; ++i) {
  3558.       var item = themes[i];
  3559.       var itemLocation = item.location.getItemLocation(item.id);
  3560.       var manifest = itemLocation.clone();
  3561.       manifest.append(FILE_CHROME_MANIFEST);
  3562.       if (manifest.exists() ||
  3563.           item.id == stripPrefix(RDFURI_DEFAULT_THEME, PREFIX_ITEM_URI))
  3564.         continue;
  3565.  
  3566.       var entries;
  3567.       try {
  3568.         var manifestURI = getURIFromFile(manifest);
  3569.         var chromeDir = itemLocation.clone();
  3570.         chromeDir.append(DIR_CHROME);
  3571.         
  3572.         if (!chromeDir.exists() || !chromeDir.isDirectory()) {
  3573.           ds.removeItemMetadata(item.id);
  3574.           ds.removeItemFromContainer(item.id);
  3575.           continue;
  3576.         }
  3577.  
  3578.         // We're relying on the fact that there is only one JAR file
  3579.         // in the "chrome" directory. This is a hack, but it works.
  3580.         entries = chromeDir.directoryEntries.QueryInterface(nsIDirectoryEnumerator);
  3581.         var jarFile = entries.nextFile;
  3582.         if (jarFile) {
  3583.           var jarFileURI = getURIFromFile(jarFile);
  3584.           var contentsURI = newURI("jar:" + jarFileURI.spec + "!/");
  3585.  
  3586.           // Use the Chrome Registry API to install the theme there
  3587.           var cr = Components.classes["@mozilla.org/chrome/chrome-registry;1"]
  3588.                             .getService(Components.interfaces.nsIToolkitChromeRegistry);
  3589.           cr.processContentsManifest(contentsURI, manifestURI, contentsURI, false, true);
  3590.         }
  3591.         entries.close();
  3592.       }
  3593.       catch (e) {
  3594.         LOG("_upgradeChrome: failed to upgrade contents manifest for " + 
  3595.             "theme: " + item.id + ", exception: " + e + "... The theme will be " + 
  3596.             "disabled.");
  3597.         this._appDisableItem(item.id);
  3598.       }
  3599.       finally {
  3600.         try {
  3601.           entries.close();
  3602.         }
  3603.         catch (e) {
  3604.         }
  3605.       }
  3606.       checkForNewChrome = true;
  3607.     }
  3608.     return checkForNewChrome;  
  3609.   },
  3610.   
  3611.   _checkForUncoveredItem: function(id) {
  3612.     var ds = this.datasource;
  3613.     var oldLocation = this.getInstallLocation(id);
  3614.     var newLocations = [];
  3615.     for (var locationKey in StartupCache.entries) {
  3616.       var location = InstallLocations.get(locationKey);
  3617.       if (id in StartupCache.entries[locationKey] && 
  3618.           location.priority > oldLocation.priority)
  3619.         newLocations.push(location);
  3620.     }
  3621.     newLocations.sort(function(a, b) { return b.priority - a.priority; });
  3622.     if (newLocations.length > 0) {
  3623.       for (var i = 0; i < newLocations.length; ++i) {
  3624.         // Check to see that the item at the location exists
  3625.         var installRDF = newLocations[i].getItemFile(id, FILE_INSTALL_MANIFEST);
  3626.         if (installRDF.exists()) {
  3627.           // Update the visible item cache so that |_finalizeUpgrade| is properly 
  3628.           // called from |_finishOperations|
  3629.           var name = newLocations[i].name;
  3630.           ds.updateVisibleList(id, name, true);
  3631.           PendingOperations.addItem(OP_NEEDS_UPGRADE, 
  3632.                                     { locationKey: name, id: id });
  3633.           PendingOperations.addItem(OP_NEEDS_INSTALL, 
  3634.                                     { locationKey: name, id: id });
  3635.           break;
  3636.         }
  3637.         else {
  3638.           // If no item exists at the location specified, remove this item
  3639.           // from the visible items list and check again. 
  3640.           StartupCache.clearEntry(newLocations[i], id);
  3641.           ds.updateVisibleList(id, null, true);
  3642.         }
  3643.       }
  3644.     }
  3645.     else
  3646.       ds.updateVisibleList(id, null, true);
  3647.   },
  3648.   
  3649.   /**
  3650.    * Finish up pending operations - perform upgrades, installs, enables/disables, 
  3651.    * uninstalls etc.
  3652.    * @returns true if actions were performed that require a restart, false 
  3653.    *          otherwise.
  3654.    */
  3655.   _finishOperations: function() {
  3656.     try {
  3657.       // Stuff has changed, load the Extensions datasource in all its RDFey
  3658.       // glory. 
  3659.       var ds = this.datasource;
  3660.       var updatedTargetAppInfos = [];
  3661.  
  3662.       var needsRestart = false;      
  3663.       do {
  3664.         // Enable and disable during startup so items that are changed in the
  3665.         // ui can be reset to a no-op.
  3666.         // Look for extensions that need to be enabled.
  3667.         var items = PendingOperations.getOperations(OP_NEEDS_ENABLE);
  3668.         for (var i = items.length - 1; i >= 0; --i) {
  3669.           var id = items[i].id;
  3670.           var installLocation = this.getInstallLocation(id);
  3671.           StartupCache.put(installLocation, id, OP_NONE, true);
  3672.           PendingOperations.clearItem(OP_NEEDS_ENABLE, id);
  3673.           needsRestart = true;
  3674.         }
  3675.         PendingOperations.clearItems(OP_NEEDS_ENABLE);
  3676.  
  3677.         // Look for extensions that need to be disabled.
  3678.         items = PendingOperations.getOperations(OP_NEEDS_DISABLE);
  3679.         for (i = items.length - 1; i >= 0; --i) {
  3680.           id = items[i].id;
  3681.           installLocation = this.getInstallLocation(id);
  3682.           StartupCache.put(installLocation, id, OP_NONE, true);
  3683.           PendingOperations.clearItem(OP_NEEDS_DISABLE, id);
  3684.           needsRestart = true;
  3685.         }
  3686.         PendingOperations.clearItems(OP_NEEDS_DISABLE);
  3687.  
  3688.         // Look for extensions that need to be upgraded. The process here is to
  3689.         // uninstall the old version of the extension first, then install the
  3690.         // new version in its place. 
  3691.         items = PendingOperations.getOperations(OP_NEEDS_UPGRADE);
  3692.         for (i = items.length - 1; i >= 0; --i) {
  3693.           id = items[i].id;
  3694.           var oldLocation = this.getInstallLocation(id);
  3695.           var newLocation = InstallLocations.get(items[i].locationKey);
  3696.           if (newLocation.priority <= oldLocation.priority) {
  3697.             // check if there is updated app compatibility info
  3698.             var newTargetAppInfo = ds.getUpdatedTargetAppInfo(id);
  3699.             if (newTargetAppInfo)
  3700.               updatedTargetAppInfos.push(newTargetAppInfo);
  3701.             this._finalizeUpgrade(id);
  3702.           }
  3703.         }
  3704.         PendingOperations.clearItems(OP_NEEDS_UPGRADE);
  3705.  
  3706.         // Install items
  3707.         items = PendingOperations.getOperations(OP_NEEDS_INSTALL);
  3708.         for (i = items.length - 1; i >= 0; --i) {
  3709.           needsRestart = true;
  3710.           id = items[i].id;
  3711.           // check if there is updated app compatibility info
  3712.           newTargetAppInfo = ds.getUpdatedTargetAppInfo(id);
  3713.           if (newTargetAppInfo)
  3714.             updatedTargetAppInfos.push(newTargetAppInfo);
  3715.           this._finalizeInstall(id, null);
  3716.         }
  3717.         PendingOperations.clearItems(OP_NEEDS_INSTALL);
  3718.  
  3719.         // Look for extensions that need to be removed. This MUST be done after
  3720.         // the install operations since extensions to be installed may have to be
  3721.         // uninstalled if there are errors during the installation process!
  3722.         items = PendingOperations.getOperations(OP_NEEDS_UNINSTALL);
  3723.         for (i = items.length - 1; i >= 0; --i) {
  3724.           id = items[i].id;
  3725.           this._finalizeUninstall(id);
  3726.           this._checkForUncoveredItem(id);
  3727.           needsRestart = true;
  3728.         }
  3729.         PendingOperations.clearItems(OP_NEEDS_UNINSTALL);
  3730.  
  3731.         // When there have been operations and all operations have completed.
  3732.         if (PendingOperations.size == 0) {
  3733.           // If there is updated app compatibility info update the data sources.
  3734.           for (i = 0; i < updatedTargetAppInfos.length; ++i)
  3735.             ds.updateTargetAppInfo(updatedTargetAppInfos[i].id,
  3736.                                    updatedTargetAppInfos[i].minVersion,
  3737.                                    updatedTargetAppInfos[i].maxVersion);
  3738.  
  3739.           // Enumerate all items
  3740.           var ctr = getContainer(ds, ds._itemRoot);
  3741.           var elements = ctr.GetElements();
  3742.           while (elements.hasMoreElements()) {
  3743.             var itemResource = elements.getNext().QueryInterface(Components.interfaces.nsIRDFResource);
  3744.  
  3745.             // Ensure appDisabled is in the correct state.
  3746.             id = stripPrefix(itemResource.Value, PREFIX_ITEM_URI);
  3747.             if (this._isUsableItem(id))
  3748.               ds.setItemProperty(id, EM_R("appDisabled"), null);
  3749.             else
  3750.               ds.setItemProperty(id, EM_R("appDisabled"), EM_L("true"));
  3751.  
  3752.             // userDisabled is set based on its value being OP_NEEDS_ENABLE or
  3753.             // OP_NEEDS_DISABLE. This allows us to have an item to be enabled
  3754.             // by the app and disabled by the user during a single restart.
  3755.             var value = stringData(ds.GetTarget(itemResource, EM_R("userDisabled"), true));
  3756.             if (value == OP_NEEDS_ENABLE)
  3757.               ds.setItemProperty(id, EM_R("userDisabled"), null);
  3758.             else if (value == OP_NEEDS_DISABLE)
  3759.               ds.setItemProperty(id, EM_R("userDisabled"), EM_L("true"));
  3760.           }
  3761.         }
  3762.       }
  3763.       while (PendingOperations.size > 0);
  3764.       
  3765.       // Upgrade contents.rdf files to the new chrome.manifest format for
  3766.       // existing Extensions and Themes
  3767.       if (this._upgradeChrome()) {
  3768.         var cr = Components.classes["@mozilla.org/chrome/chrome-registry;1"]
  3769.                            .getService(Components.interfaces.nsIChromeRegistry);
  3770.         cr.checkForNewChrome();
  3771.       }
  3772.  
  3773.       // If no additional restart is required, it implies that there are
  3774.       // no new components that need registering so we can inform the app
  3775.       // not to do any extra startup checking next time round. 
  3776.       this._updateManifests(needsRestart);
  3777.  
  3778.     }
  3779.     catch (e) {
  3780.       LOG("ExtensionManager:_finishOperations - failure, catching exception - lineno: " +
  3781.           e.lineNumber + " - file: " + e.fileName + " - " + e);
  3782.     }
  3783.     return needsRestart;
  3784.   },
  3785.   
  3786.   /**
  3787.    * Checks to see if there are items that are incompatible with this version
  3788.    * of the application, disables them to prevent incompatibility problems and 
  3789.    * invokes the Update Wizard to look for newer versions.
  3790.    * @returns true if there were incompatible items installed and disabled, and
  3791.    *          the application must now be restarted to reinitialize XPCOM,
  3792.    *          false otherwise.
  3793.    */
  3794.   checkForMismatches: function() {
  3795.     // Check to see if the version of the application that is being started
  3796.     // now is the same one that was started last time. 
  3797.     var currAppVersion = gApp.version;
  3798.     var lastAppVersion = getPref("getCharPref", PREF_EM_LAST_APP_VERSION, "");
  3799.     if (currAppVersion == lastAppVersion)
  3800.       return false;
  3801.     // With a new profile lastAppVersion doesn't exist yet.
  3802.     if (!lastAppVersion) {
  3803.       gPref.setCharPref(PREF_EM_LAST_APP_VERSION, currAppVersion);
  3804.       return false;
  3805.     }
  3806.  
  3807.     // Version mismatch, we have to load the extensions datasource and do
  3808.     // version checking. Time hit here doesn't matter since this doesn't happen
  3809.     // all that often.
  3810.     this._upgradeFromV10();
  3811.     
  3812.     // Make the extensions datasource consistent if it isn't already.
  3813.     var isDirty = false;
  3814.     if (this._ensureDatasetIntegrity())
  3815.       isDirty = true;
  3816.  
  3817.     if (this._checkForFileChanges())
  3818.       isDirty = true;
  3819.  
  3820.     if (PendingOperations.size != 0)
  3821.       isDirty = true;
  3822.  
  3823.     if (isDirty)
  3824.       this._finishOperations();
  3825.  
  3826.     var ds = this.datasource;
  3827.     // During app upgrade cleanup invalid entries in the extensions datasource.
  3828.     ds.beginUpdateBatch();
  3829.     var allResources = ds.GetAllResources();
  3830.     while (allResources.hasMoreElements()) {
  3831.       var res = allResources.getNext().QueryInterface(Components.interfaces.nsIRDFResource);
  3832.       if (ds.GetTarget(res, EM_R("downloadURL"), true) ||
  3833.           (!ds.GetTarget(res, EM_R("installLocation"), true) &&
  3834.           stringData(ds.GetTarget(res, EM_R("appDisabled"), true)) == "true"))
  3835.         ds.removeDownload(res.Value);
  3836.     }
  3837.     ds.endUpdateBatch();
  3838.  
  3839.     var allAppManaged = true;
  3840.     var ctr = getContainer(ds, ds._itemRoot);
  3841.     var elements = ctr.GetElements();
  3842.     while (elements.hasMoreElements()) {
  3843.       var itemResource = elements.getNext().QueryInterface(Components.interfaces.nsIRDFResource);
  3844.       var id = stripPrefix(itemResource.Value, PREFIX_ITEM_URI);
  3845.       if (ds.getItemProperty(id, "appManaged") == "true") {
  3846.         // Force an update of the metadata for appManaged extensions since the
  3847.         // last modified time is not updated for directories on FAT / FAT32
  3848.         // filesystems when software update applies a new version of the app.
  3849.         var location = this.getInstallLocation(id);
  3850.         if (location.name == KEY_APP_GLOBAL) {
  3851.           var installRDF = location.getItemFile(id, FILE_INSTALL_MANIFEST);
  3852.           if (installRDF.exists()) {
  3853.             var metadataDS = getInstallManifest(installRDF);
  3854.             ds.addItemMetadata(id, metadataDS, location);
  3855.             ds.updateProperty(id, "compatible");
  3856.           }
  3857.         }
  3858.       }
  3859.       else if (allAppManaged)
  3860.         allAppManaged = false;
  3861.       // appDisabled is determined by an item being compatible,
  3862.       // satisfying its dependencies, and not being blocklisted
  3863.       if (this._isUsableItem(id)) {
  3864.         if (ds.getItemProperty(id, "appDisabled"))
  3865.           ds.setItemProperty(id, EM_R("appDisabled"), null);
  3866.       }
  3867.       else if (!ds.getItemProperty(id, "appDisabled"))
  3868.         ds.setItemProperty(id, EM_R("appDisabled"), EM_L("true"));
  3869.  
  3870.       ds.setItemProperty(id, EM_R("availableUpdateURL"), null);
  3871.       ds.setItemProperty(id, EM_R("availableUpdateVersion"), null);
  3872.     }
  3873.     // Update the manifests to reflect the items that were disabled / enabled.
  3874.     this._updateManifests(true);
  3875.  
  3876.     // Always check for compatibility updates when upgrading if we have add-ons
  3877.     // that aren't managed by the application.
  3878.     if (!allAppManaged)
  3879.       this._showMismatchWindow();
  3880.     
  3881.     // Finish any pending upgrades from the compatibility update to avoid an
  3882.     // additional restart.
  3883.     if (PendingOperations.size != 0)
  3884.       this._finishOperations();
  3885.  
  3886.     // Update the last app version so we don't do this again with this version.
  3887.     gPref.setCharPref(PREF_EM_LAST_APP_VERSION, currAppVersion);
  3888.  
  3889.     // Prevent extension update dialog from showing
  3890.     gPref.setBoolPref(PREF_UPDATE_NOTIFYUSER, false);
  3891.     return true;
  3892.   },
  3893.  
  3894.   /**
  3895.    * Shows the "Compatibility Updates" UI
  3896.    */
  3897.   _showMismatchWindow: function(items) {
  3898.     var wm = Components.classes["@mozilla.org/appshell/window-mediator;1"]
  3899.                        .getService(Components.interfaces.nsIWindowMediator);
  3900.     var wizard = wm.getMostRecentWindow("Update:Wizard");
  3901.     if (wizard)
  3902.       wizard.focus();
  3903.     else {
  3904.       var features = "chrome,centerscreen,dialog,titlebar,modal";
  3905.       // This *must* be modal so as not to break startup! This code is invoked before
  3906.       // the main event loop is initiated (via checkForMismatches).
  3907.       var ww = Components.classes["@mozilla.org/embedcomp/window-watcher;1"]
  3908.                          .getService(Components.interfaces.nsIWindowWatcher);
  3909.       ww.openWindow(null, URI_EXTENSION_UPDATE_DIALOG, "", features, null);
  3910.     }
  3911.   },
  3912.   
  3913.   /*
  3914.    * Catch all for facilitating a version 1.0 profile upgrade.
  3915.    * 1) removes the abandoned default theme directory from the profile.
  3916.    * 2) prepares themes installed with version 1.0 for installation.
  3917.    * 3) initiates an install to populate the new extensions datasource.
  3918.    * 4) migrates the disabled attribute from the old datasource.
  3919.    * 5) migrates the app compatibility info from the old datasource.
  3920.    */
  3921.   _upgradeFromV10: function() {
  3922.     var extensionsDS = getFile(KEY_PROFILEDIR, [FILE_EXTENSIONS]);
  3923.     var dsExists = extensionsDS.exists();
  3924.     // Toolkiit 1.7 profiles (Firefox 1.0, Thunderbird 1.0, etc.) have a default
  3925.     // theme directory in the profile's extensions directory that will be
  3926.     // disabled due to having a maxVersion that is incompatible with the
  3927.     // toolkit 1.8 release of the app.
  3928.     var profileDefaultTheme = getDirNoCreate(KEY_PROFILEDS, [DIR_EXTENSIONS,
  3929.                                              stripPrefix(RDFURI_DEFAULT_THEME, PREFIX_ITEM_URI)]);
  3930.     if (profileDefaultTheme && profileDefaultTheme.exists()) {
  3931.       removeDirRecursive(profileDefaultTheme);
  3932.       // Sunbird 0.3a1 didn't move the default theme into the app's extensions
  3933.       // directory and we can't install it while uninstalling the one in the
  3934.       // profile directory. If we have a toolkit 1.8 extensions datasource and
  3935.       // a profile default theme deleting the toolkit 1.8 extensions datasource
  3936.       // will fix this problem when the datasource is re-created.
  3937.       if (dsExists)
  3938.         extensionsDS.remove(false);
  3939.     }
  3940.  
  3941.     // return early if the toolkit 1.7 extensions datasource file doesn't exist.
  3942.     var oldExtensionsFile = getFile(KEY_PROFILEDIR, [DIR_EXTENSIONS, "Extensions.rdf"]);
  3943.     if (!oldExtensionsFile.exists())
  3944.       return;
  3945.  
  3946.     // Sunbird 0.2 used a different GUID for the default theme
  3947.     profileDefaultTheme = getDirNoCreate(KEY_PROFILEDS, [DIR_EXTENSIONS,
  3948.                                          "{8af2d0a7-e394-4de2-ae55-2dae532a7a9b}"]);
  3949.     if (profileDefaultTheme && profileDefaultTheme.exists())
  3950.       removeDirRecursive(profileDefaultTheme);
  3951.  
  3952.     // Firefox 0.9 profiles may have DOMi 1.0 with just an install.rdf
  3953.     var profileDOMi = getDirNoCreate(KEY_PROFILEDS, [DIR_EXTENSIONS,
  3954.                                      "{641d8d09-7dda-4850-8228-ac0ab65e2ac9}"]);
  3955.     if (profileDOMi && profileDOMi.exists())
  3956.       removeDirRecursive(profileDOMi);
  3957.  
  3958.     // return early to avoid migrating data twice if we already have a
  3959.     // toolkit 1.8 extension datasource.
  3960.     if (dsExists)
  3961.       return;
  3962.  
  3963.     // Prepare themes for installation
  3964.     // Only enumerate directories in the app-profile and app-global locations.
  3965.     var locations = [KEY_APP_PROFILE, KEY_APP_GLOBAL];
  3966.     for (var i = 0; i < locations.length; ++i) {
  3967.       var location = InstallLocations.get(locations[i]);
  3968.       if (!location.canAccess)
  3969.         continue;
  3970.  
  3971.       var entries = location.itemLocations;
  3972.       var entry;
  3973.       while ((entry = entries.nextFile)) {
  3974.         var installRDF = entry.clone();
  3975.         installRDF.append(FILE_INSTALL_MANIFEST);
  3976.  
  3977.         var chromeDir = entry.clone();
  3978.         chromeDir.append(DIR_CHROME);
  3979.  
  3980.         // It must be a directory without an install.rdf and it must contain
  3981.         // a chrome directory
  3982.         if (!entry.isDirectory() || installRDF.exists() || !chromeDir.exists())
  3983.           continue;
  3984.  
  3985.         var chromeEntries = chromeDir.directoryEntries.QueryInterface(nsIDirectoryEnumerator);
  3986.         if (!chromeEntries.hasMoreElements())
  3987.           continue;
  3988.  
  3989.         // We're relying on the fact that there is only one JAR file
  3990.         // in the "chrome" directory. This is a hack, but it works.
  3991.         var jarFile = chromeEntries.nextFile;
  3992.         if (jarFile.isDirectory())
  3993.           continue;
  3994.         var id = location.getIDForLocation(entry);
  3995.  
  3996.         try {
  3997.           var zipReader = getZipReaderForFile(jarFile);
  3998.           zipReader.extract(FILE_INSTALL_MANIFEST, installRDF);
  3999.  
  4000.           var contentsManifestFile = location.getItemFile(id, FILE_CONTENTS_MANIFEST);
  4001.           zipReader.extract(FILE_CONTENTS_MANIFEST, contentsManifestFile);
  4002.  
  4003.           var rootFiles = ["preview.png", "icon.png"];
  4004.           for (var i = 0; i < rootFiles.length; ++i) {
  4005.             try {
  4006.               var target = location.getItemFile(id, rootFiles[i]);
  4007.               zipReader.extract(rootFiles[i], target);
  4008.             }
  4009.             catch (e) {
  4010.             }
  4011.           }
  4012.           zipReader.close();
  4013.         }
  4014.         catch (e) {
  4015.           LOG("ExtensionManager:_upgradeFromV10 - failed to extract theme files\r\n" +
  4016.               "Exception: " + e);
  4017.         }
  4018.       }
  4019.     }
  4020.  
  4021.     // When upgrading from a version 1.0 profile we need to populate the
  4022.     // extensions datasource with all items before checking for incompatible
  4023.     // items since the datasource hasn't been created yet.
  4024.     var itemsToCheck = [];
  4025.     if (this._checkForFileChanges()) {
  4026.       // Create a list of all items that are to be installed so we can migrate
  4027.       // these items's settings to the new datasource.
  4028.       var items = PendingOperations.getOperations(OP_NEEDS_INSTALL);
  4029.       for (i = items.length - 1; i >= 0; --i) {
  4030.         if (items[i].locationKey == KEY_APP_PROFILE ||
  4031.             items[i].locationKey == KEY_APP_GLOBAL)
  4032.           itemsToCheck.push(items[i].id);
  4033.       }
  4034.       this._finishOperations();
  4035.     }
  4036.  
  4037.     // If there are no items to migrate settings for return early.
  4038.     if (itemsToCheck.length == 0)
  4039.       return;
  4040.  
  4041.     var fileURL = getURLSpecFromFile(oldExtensionsFile);
  4042.     var oldExtensionsDS = gRDF.GetDataSourceBlocking(fileURL);
  4043.     var versionChecker = getVersionChecker();
  4044.     var ds = this.datasource;
  4045.     var currAppVersion = gApp.version;
  4046.     var currAppID = gApp.ID;
  4047.     for (var i = 0; i < itemsToCheck.length; ++i) {
  4048.       var item = ds.getItemForID(itemsToCheck[i]);
  4049.       var oldPrefix = (item.type == nsIUpdateItem.TYPE_EXTENSION) ? PREFIX_EXTENSION : PREFIX_THEME;
  4050.       var oldRes = gRDF.GetResource(oldPrefix + item.id);
  4051.       // Disable the item if it was disabled in the version 1.0 extensions
  4052.       // datasource.
  4053.       if (oldExtensionsDS.GetTarget(oldRes, EM_R("disabled"), true))
  4054.         ds.setItemProperty(item.id, EM_R("userDisabled"), EM_L("true"));
  4055.  
  4056.       // app enable all items. If it is incompatible it will be app disabled
  4057.       // later on.
  4058.       ds.setItemProperty(item.id, EM_R("appDisabled"), null);
  4059.  
  4060.       // if the item is already compatible don't attempt to migrate the
  4061.       // item's compatibility info
  4062.       var newRes = getResourceForID(itemsToCheck[i]);
  4063.       if (ds.isCompatible(ds, newRes))
  4064.         continue;
  4065.  
  4066.       var updatedMinVersion = null;
  4067.       var updatedMaxVersion = null;
  4068.       var targetApps = oldExtensionsDS.GetTargets(oldRes, EM_R("targetApplication"), true);
  4069.       while (targetApps.hasMoreElements()) {
  4070.         var targetApp = targetApps.getNext();
  4071.         if (targetApp instanceof Components.interfaces.nsIRDFResource) {
  4072.           try {
  4073.             var foundAppID = stringData(oldExtensionsDS.GetTarget(targetApp, EM_R("id"), true));
  4074.             if (foundAppID != currAppID) // Different target application
  4075.               continue;
  4076.  
  4077.             updatedMinVersion = stringData(oldExtensionsDS.GetTarget(targetApp, EM_R("minVersion"), true));
  4078.             updatedMaxVersion = stringData(oldExtensionsDS.GetTarget(targetApp, EM_R("maxVersion"), true));
  4079.  
  4080.             // Only set the target app info if the extension's target app info
  4081.             // in the version 1.0 extensions datasource makes it compatible
  4082.             if (versionChecker.compare(currAppVersion, updatedMinVersion) >= 0 &&
  4083.                 versionChecker.compare(currAppVersion, updatedMaxVersion) <= 0)
  4084.               ds.updateTargetAppInfo(item.id, updatedMinVersion, updatedMaxVersion);
  4085.  
  4086.             break;
  4087.           }
  4088.           catch (e) { 
  4089.           }
  4090.         }
  4091.       }
  4092.     }
  4093.   },
  4094.  
  4095.   /**
  4096.    * Write the Extensions List and the Startup Cache
  4097.    * @param   needsRestart
  4098.    *          true if the application needs to restart again, false otherwise.
  4099.    */  
  4100.   _updateManifests: function(needsRestart) {
  4101.     // Write the Startup Cache (All Items, visible or not)
  4102.     StartupCache.write();
  4103.     // Write the Extensions Locations Manifest (Visible, enabled items)
  4104.     this._updateExtensionsManifest(needsRestart);
  4105.   },
  4106.  
  4107.   /**
  4108.    * Get a list of items that are currently "active" (turned on) of a specific
  4109.    * type
  4110.    * @param   type
  4111.    *          The nsIUpdateItem type to return a list of items of
  4112.    * @returns An array of active items of the specified type.
  4113.    */
  4114.   _getActiveItems: function(type) {
  4115.     var allItems = this.getItemList(type, { });
  4116.     var activeItems = [];
  4117.     var ds = this.datasource;
  4118.     for (var i = 0; i < allItems.length; ++i) {
  4119.       var item = allItems[i];
  4120.  
  4121.       // An item entry is valid only if it is not disabled, not about to 
  4122.       // be disabled, and not about to be uninstalled.
  4123.       var installLocation = this.getInstallLocation(item.id);
  4124.       if (installLocation.name in StartupCache.entries &&
  4125.           item.id in StartupCache.entries[installLocation.name] &&
  4126.           StartupCache.entries[installLocation.name][item.id]) {
  4127.         var op = StartupCache.entries[installLocation.name][item.id].op;
  4128.         if (op == OP_NEEDS_INSTALL || op == OP_NEEDS_UPGRADE || 
  4129.             op == OP_NEEDS_UNINSTALL || op == OP_NEEDS_DISABLE)
  4130.           continue;
  4131.       }
  4132.       // Suppress items that have been disabled by the user or the app.
  4133.       if (ds.getItemProperty(item.id, "isDisabled") != "true")
  4134.         activeItems.push({ id: item.id, location: installLocation });
  4135.     }
  4136.  
  4137.     return activeItems;
  4138.   },
  4139.   
  4140.   /**
  4141.    * Write the Extensions List
  4142.    * @param   needsRestart
  4143.    *          true if the application needs to restart again, false otherwise.
  4144.    */
  4145.   _updateExtensionsManifest: function(needsRestart) {
  4146.     // When an operation is performed that requires a component re-registration
  4147.     // (extension enabled/disabled, installed, uninstalled), we must write the
  4148.     // set of paths where extensions live so that the startup system can determine
  4149.     // where additional components, preferences, chrome manifests etc live.
  4150.     //
  4151.     // To do this we obtain a list of active extensions and themes and write 
  4152.     // these to the extensions.ini file in the profile directory.
  4153.     var validExtensions = this._getActiveItems(nsIUpdateItem.TYPE_EXTENSION +
  4154.                                                nsIUpdateItem.TYPE_LOCALE +
  4155.                                                nsIUpdateItem.TYPE_PLUGIN);
  4156.     var validThemes     = this._getActiveItems(nsIUpdateItem.TYPE_THEME);
  4157.  
  4158.     var extensionsLocationsFile = getFile(KEY_PROFILEDIR, [FILE_EXTENSION_MANIFEST]);
  4159.     var fos = openSafeFileOutputStream(extensionsLocationsFile);
  4160.         
  4161.     var extensionSectionHeader = "[ExtensionDirs]\r\n";
  4162.     fos.write(extensionSectionHeader, extensionSectionHeader.length);
  4163.     for (var i = 0; i < validExtensions.length; ++i) {
  4164.       var e = validExtensions[i];
  4165.       var itemLocation = e.location.getItemLocation(e.id).QueryInterface(nsILocalFile);
  4166.       var descriptor = getAbsoluteDescriptor(itemLocation);
  4167.       var line = "Extension" + i + "=" + descriptor + "\r\n";
  4168.       fos.write(line, line.length);
  4169.     }
  4170.  
  4171.     var themeSectionHeader = "[ThemeDirs]\r\n";
  4172.     fos.write(themeSectionHeader, themeSectionHeader.length);
  4173.     for (i = 0; i < validThemes.length; ++i) {
  4174.       var e = validThemes[i];
  4175.       var itemLocation = e.location.getItemLocation(e.id).QueryInterface(nsILocalFile);
  4176.       var descriptor = getAbsoluteDescriptor(itemLocation);
  4177.       var line = "Extension" + i + "=" + descriptor + "\r\n";
  4178.       fos.write(line, line.length);
  4179.     }
  4180.  
  4181.     closeSafeFileOutputStream(fos);
  4182.  
  4183.     // Now refresh the compatibility manifest.
  4184.     this._extensionListChanged = needsRestart;
  4185.   },
  4186.   
  4187.   /**
  4188.    * Say whether or not the Extension List has changed (and thus whether or not
  4189.    * the system will have to restart the next time it is started).
  4190.    * @param   val
  4191.    *          true if the Extension List has changed, false otherwise.
  4192.    * @returns |val|
  4193.    */
  4194.   set _extensionListChanged(val) {
  4195.     // When an extension has an operation perform on it (e.g. install, upgrade,
  4196.     // disable, etc.) we are responsible for creating the .autoreg file and
  4197.     // nsAppRunner is responsible for removing it on restart. At some point it
  4198.     // may make sense to be able to cancel a registration but for now we only
  4199.     // create the file.
  4200.     try {
  4201.       var autoregFile = getFile(KEY_PROFILEDIR, [FILE_AUTOREG]);
  4202.       if (val && !autoregFile.exists())
  4203.         autoregFile.create(nsILocalFile.NORMAL_FILE_TYPE, PERMS_FILE);
  4204.     }
  4205.     catch (e) {
  4206.     }
  4207.     return val;
  4208.   },
  4209.   
  4210.   /**
  4211.    * Gathers data about an item specified by the supplied Install Manifest
  4212.    * and determines whether or not it can be installed as-is. It makes this 
  4213.    * determination by validating the item's GUID, Version, and determining 
  4214.    * if it is compatible with this application.
  4215.    * @param   installManifest 
  4216.    *          A nsIRDFDataSource representing the Install Manifest of the 
  4217.    *          item to be installed.
  4218.    * @return  A JS Object with the following properties:
  4219.    *          "id"       The GUID of the Item being installed.
  4220.    *          "version"  The Version string of the Item being installed.
  4221.    *          "name"     The Name of the Item being installed.
  4222.    *          "type"     The nsIUpdateItem type of the Item being installed.
  4223.    *          "targetApps" An array of TargetApplication Info Objects
  4224.    *                     with "id", "minVersion" and "maxVersion" properties,
  4225.    *                     representing applications targeted by this item.
  4226.    *          "error"    The result code:
  4227.    *                     INSTALLERROR_SUCCESS      
  4228.    *                       no error, item can be installed
  4229.    *                     INSTALLERROR_INVALID_GUID 
  4230.    *                       error, GUID is not well-formed
  4231.    *                     INSTALLERROR_INVALID_VERSION
  4232.    *                       error, Version is not well-formed
  4233.    *                     INSTALLERROR_INCOMPATIBLE_VERSION
  4234.    *                       error, item is not compatible with this version
  4235.    *                       of the application.
  4236.    *                     INSTALLERROR_INCOMPATIBLE_PLATFORM
  4237.    *                       error, item is not compatible with the operating
  4238.    *                       system or ABI the application was built for.
  4239.    *                     INSTALLERROR_BLOCKLISTED
  4240.    *                       error, item is blocklisted
  4241.    */
  4242.   _getInstallData: function(installManifest) {
  4243.     var installData = { id          : "", 
  4244.                         version     : "", 
  4245.                         name        : "", 
  4246.                         type        : 0, 
  4247.                         error       : INSTALLERROR_SUCCESS, 
  4248.                         targetApps  : [],
  4249.                         currentApp  : null };
  4250.  
  4251.     // Fetch properties from the Install Manifest
  4252.     installData.id       = getManifestProperty(installManifest, "id");
  4253.     installData.version  = getManifestProperty(installManifest, "version");
  4254.     installData.name     = getManifestProperty(installManifest, "name");
  4255.     installData.type     = getAddonTypeFromInstallManifest(installManifest);
  4256.     installData.updateURL= getManifestProperty(installManifest, "updateURL");
  4257.  
  4258.     /**
  4259.      * Reads a property off a Target Application resource
  4260.      * @param   resource
  4261.      *          The RDF Resource for a Target Application
  4262.      * @param   property
  4263.      *          The property (less EM_NS) to read
  4264.      * @returns The string literal value of the property.
  4265.      */
  4266.     function readTAProperty(resource, property) {
  4267.       return stringData(installManifest.GetTarget(resource, EM_R(property), true));
  4268.     }
  4269.     
  4270.     var targetApps = installManifest.GetTargets(gInstallManifestRoot, 
  4271.                                                 EM_R("targetApplication"), 
  4272.                                                 true);
  4273.     while (targetApps.hasMoreElements()) {
  4274.       var targetApp = targetApps.getNext();
  4275.       if (targetApp instanceof Components.interfaces.nsIRDFResource) {
  4276.         try {
  4277.           var data = { id        : readTAProperty(targetApp, "id"),
  4278.                        minVersion: readTAProperty(targetApp, "minVersion"),
  4279.                        maxVersion: readTAProperty(targetApp, "maxVersion") };
  4280.           installData.targetApps.push(data);
  4281.           if (data.id == gApp.ID) 
  4282.             installData.currentApp = data;
  4283.         }
  4284.         catch (e) {
  4285.           continue;
  4286.         }
  4287.       }
  4288.     }
  4289.  
  4290.     // If the item specifies one or more target platforms, make sure our OS/ABI
  4291.     // combination is in the list - otherwise, refuse to install the item.
  4292.     var targetPlatforms = null;
  4293.     try {
  4294.       targetPlatforms = installManifest.GetTargets(gInstallManifestRoot, 
  4295.                                                    EM_R("targetPlatform"), 
  4296.                                                    true);
  4297.     } catch(e) {
  4298.       // No targetPlatform nodes, continue.
  4299.     }
  4300.     if (targetPlatforms != null && targetPlatforms.hasMoreElements()) {
  4301.       var foundMatchingOS = false;
  4302.       var foundMatchingOSAndABI = false;
  4303.       var requireABICompatibility = false;
  4304.       while (targetPlatforms.hasMoreElements()) {
  4305.         var targetPlatform = stringData(targetPlatforms.getNext());
  4306.         var os = targetPlatform.split("_")[0];
  4307.         var index = targetPlatform.indexOf("_");
  4308.         var abi = index != -1 ? targetPlatform.substr(index + 1) : null;
  4309.         if (os == gOSTarget) {
  4310.           foundMatchingOS = true;
  4311.           // The presence of any ABI part after our OS means ABI is important.
  4312.           if (abi != null) {
  4313.             requireABICompatibility = true;
  4314.             // If we don't know our ABI, we can't be compatible
  4315.             if (abi == gXPCOMABI && abi != UNKNOWN_XPCOM_ABI) {
  4316.               foundMatchingOSAndABI = true;
  4317.               break;
  4318.             }
  4319.           }
  4320.         }
  4321.       }
  4322.       if (!foundMatchingOS || (requireABICompatibility && !foundMatchingOSAndABI)) {
  4323.         installData.error = INSTALLERROR_INCOMPATIBLE_PLATFORM;
  4324.         return installData;
  4325.       }
  4326.     }
  4327.  
  4328.     // Validate the Item ID
  4329.     if (!gIDTest.test(installData.id)) {
  4330.       installData.error = INSTALLERROR_INVALID_GUID;
  4331.       return installData;
  4332.     }
  4333.      
  4334.     // Check the target application range specified by the extension metadata.
  4335.     if (gCheckCompatibility &&
  4336.         !this.datasource.isCompatible(installManifest, gInstallManifestRoot, undefined))
  4337.       installData.error = INSTALLERROR_INCOMPATIBLE_VERSION;
  4338.     
  4339.     // Check if the item is blocklisted.
  4340.     if (this.datasource.isBlocklisted(installData.id, installData.version,
  4341.                                       undefined, undefined))
  4342.       installData.error = INSTALLERROR_BLOCKLISTED;
  4343.  
  4344.     return installData;
  4345.   },  
  4346.   
  4347.   /**
  4348.    * Installs an item from a XPI/JAR file. 
  4349.    * This is the main entry point into the Install system from outside code
  4350.    * (e.g. XPInstall).
  4351.    * @param   aXPIFile
  4352.    *          The file to install from.
  4353.    * @param   aInstallLocationKey
  4354.    *          The name of the Install Location where this item should be 
  4355.    *          installed.
  4356.    */  
  4357.   installItemFromFile: function(xpiFile, installLocationKey) {
  4358.     this.installItemFromFileInternal(xpiFile, installLocationKey, null);
  4359.   },
  4360.   
  4361.   /**
  4362.    * Installs an item from a XPI/JAR file.
  4363.    * @param   aXPIFile
  4364.    *          The file to install from.
  4365.    * @param   aInstallLocationKey
  4366.    *          The name of the Install Location where this item should be 
  4367.    *          installed.
  4368.    * @param   aInstallManifest
  4369.    *          An updated Install Manifest from the Version Update check.
  4370.    *          Can be null when invoked from callers other than the Version
  4371.    *          Update check.
  4372.    */
  4373.   installItemFromFileInternal: function(aXPIFile, aInstallLocationKey, aInstallManifest) {
  4374.     var em = this;
  4375.     /**
  4376.      * Gets the Install Location for an Item.
  4377.      * @param   itemID 
  4378.      *          The GUID of the item to find an Install Location for.
  4379.      * @return  An object implementing nsIInstallLocation which represents the 
  4380.      *          location where the specified item should be installed. 
  4381.      *          This can be:
  4382.      *          1. an object that corresponds to the location key supplied to
  4383.      *             |installItemFromFileInternal|,
  4384.      *          2. the default install location (the App Profile Extensions Folder)
  4385.      *             if no location key was supplied, or the location key supplied
  4386.      *             was not in the set of registered locations
  4387.      *          3. null, if the location selected by 1 or 2 above does not support
  4388.      *             installs from XPI/JAR files, or that location is not writable 
  4389.      *             with the current access privileges.
  4390.      */
  4391.     function getInstallLocation(itemID) {
  4392.       // Here I use "upgrade" to mean "install a different version of an item".
  4393.       var installLocation = em.getInstallLocation(itemID);
  4394.       if (!installLocation) {
  4395.         // This is not an "upgrade", since we don't have any location data for the
  4396.         // extension ID specified - that is, it's not in our database.
  4397.  
  4398.         // Caller supplied a key to a registered location, use that location
  4399.         // for the installation
  4400.         installLocation = InstallLocations.get(aInstallLocationKey);
  4401.         if (installLocation) {
  4402.           // If the specified location does not have a common metadata location
  4403.           // (e.g. extensions have no common root, or other location specified
  4404.           // by the location implementation) - e.g. for a Registry Key enumeration
  4405.           // location - we cannot install or upgrade using a XPI file, probably
  4406.           // because these application types will be handling upgrading themselves.
  4407.           // Just bail.
  4408.           if (!installLocation.location) {
  4409.             LOG("Install Location \"" + installLocation.name + "\" does not support " + 
  4410.                 "installation of items from XPI/JAR files. You must manage " + 
  4411.                 "installation and update of these items yourself.");
  4412.             installLocation = null;
  4413.           }
  4414.         }
  4415.         else {
  4416.           // In the absence of a preferred install location, just default to
  4417.           // the App-Profile 
  4418.           installLocation = InstallLocations.get(KEY_APP_PROFILE);
  4419.         }
  4420.       } 
  4421.       else {
  4422.         // This is an "upgrade", but not through the Update System, because the
  4423.         // Update code will not let an extension with an incompatible target
  4424.         // app version range through to this point. This is an "upgrade" in the
  4425.         // sense that the user found a different version of an installed extension
  4426.         // and installed it through the web interface, so we have metadata.
  4427.         
  4428.         // If the location is different, return the preferred location rather than
  4429.         // the location of the currently installed version, because we may be in
  4430.         // the situation where an item is being installed into the global app 
  4431.         // dir when there's a version in the profile dir.
  4432.         if (installLocation.name != aInstallLocationKey) 
  4433.           installLocation = InstallLocations.get(aInstallLocationKey);
  4434.       }
  4435.       if (!installLocation.canAccess) {
  4436.         LOG("Install Location\"" + installLocation.name + "\" cannot be written " +
  4437.             "to with your access privileges. Installation will not proceed.");
  4438.         installLocation = null;
  4439.       }
  4440.       return installLocation;
  4441.     }
  4442.     
  4443.     /**
  4444.      * Stages a XPI file in the default item location specified by other 
  4445.      * applications when they registered with XulRunner if the item's
  4446.      * install manifest specified compatibility with them.
  4447.      */
  4448.     function stageXPIForOtherApps(xpiFile, installData) {
  4449.       for (var i = 0; i < installData.targetApps.length; ++i) {
  4450.         var targetApp = installData.targetApps[i];
  4451.         if (targetApp.id != gApp.ID) {
  4452.         /* XXXben uncomment when this works!
  4453.           var settingsThingy = Components.classes[]
  4454.                                         .getService(Components.interfaces.nsIXULRunnerSettingsThingy);
  4455.           try {
  4456.             var appPrefix = "SOFTWARE\\Mozilla\\XULRunner\\Applications\\";
  4457.             var branch = settingsThingy.getBranch(appPrefix + targetApp.id);
  4458.             var path = branch.getProperty("ExtensionsLocation");
  4459.             var destination = Components.classes["@mozilla.org/file/local;1"]
  4460.                                         .createInstance(nsILocalFile);
  4461.             destination.initWithPath(path);
  4462.             xpiFile.copyTo(file, xpiFile.leafName);
  4463.           }
  4464.           catch (e) {
  4465.           }
  4466.          */
  4467.         } 
  4468.       }        
  4469.     }
  4470.     
  4471.     /**
  4472.      * Extracts and then starts the install for extensions / themes contained
  4473.      * within a xpi.
  4474.      */
  4475.     function installMultiXPI(xpiFile, installData) {
  4476.       var fileURL = getURIFromFile(xpiFile).QueryInterface(nsIURL);
  4477.       if (fileURL.fileExtension.toLowerCase() != "xpi") {
  4478.         LOG("Invalid File Extension: Item: \"" + fileURL.fileName + "\" has an " + 
  4479.             "invalid file extension. Only xpi file extensions are allowed for " +
  4480.             "multiple item packages.");
  4481.         var bundle = BundleManager.getBundle(URI_EXTENSIONS_PROPERTIES);
  4482.         showMessage("invalidFileExtTitle", [], 
  4483.                     "invalidFileExtMessage", [installData.name,
  4484.                     fileURL.fileExtension,
  4485.                     bundle.GetStringFromName("type-" + installData.type)]);
  4486.         return;
  4487.       }
  4488.  
  4489.       try {
  4490.         var zipReader = getZipReaderForFile(xpiFile);
  4491.       }
  4492.       catch (e) {
  4493.         LOG("installMultiXPI: failed to open xpi file: " + xpiFile.path);
  4494.         throw e;
  4495.       }
  4496.  
  4497.       var searchForEntries = ["*.xpi", "*.jar"];
  4498.       var files = [];
  4499.       for (var i = 0; i < searchForEntries.length; ++i) {
  4500.         var entries = zipReader.findEntries(searchForEntries[i]);
  4501.         while (entries.hasMoreElements()) {
  4502.           var entry = entries.getNext().QueryInterface(Components.interfaces.nsIZipEntry);
  4503.           var target = getFile(KEY_TEMPDIR, [entry.name]);
  4504.           try {
  4505.             target.createUnique(nsILocalFile.NORMAL_FILE_TYPE, PERMS_FILE);
  4506.           }
  4507.           catch (e) {
  4508.             LOG("installMultiXPI: failed to create target file for extraction " +
  4509.                 " file = " + target.path + ", exception = " + e + "\n");
  4510.           }
  4511.           zipReader.extract(entry.name, target);
  4512.           files.push(target);
  4513.         }
  4514.       }
  4515.       zipReader.close();
  4516.  
  4517.       if (files.length == 0) {
  4518.         LOG("Multiple Item Package: Item: \"" + fileURL.fileName + "\" does " +
  4519.             "not contain a valid package to install.");
  4520.         var bundle = BundleManager.getBundle(URI_EXTENSIONS_PROPERTIES);
  4521.         showMessage("missingPackageFilesTitle",
  4522.                     [bundle.GetStringFromName("type-" + installData.type)],
  4523.                     "missingPackageFilesMessage", [installData.name,
  4524.                     bundle.GetStringFromName("type-" + installData.type)]);
  4525.         return;
  4526.       }
  4527.  
  4528.       for (i = 0; i < files.length; ++i) {
  4529.         em.installItemFromFileInternal(files[i], aInstallLocationKey, null);
  4530.         files[i].remove(false);
  4531.       }
  4532.     }
  4533.  
  4534.     /**
  4535.      * An observer for the Extension Update System.
  4536.      * @constructor
  4537.      */
  4538.     function IncompatibleObserver() {}
  4539.     IncompatibleObserver.prototype = {
  4540.       _id: null,
  4541.       _type: nsIUpdateItem.TYPE_ANY,
  4542.       _xpi: null,
  4543.       _installManifest: null,
  4544.       _installRDF: null,
  4545.       
  4546.       /** 
  4547.        * Ask the Extension Update System if there are any version updates for
  4548.        * this item that will allow it to be compatible with this version of 
  4549.        * the Application.
  4550.        * @param   installManifest 
  4551.        *          The Install Manifest datasource for the item.
  4552.        * @param   installData
  4553.        *          The Install Data object for the item.
  4554.        * @param   xpiFile         
  4555.        *          The staged source XPI file that contains the item. Cleaned 
  4556.        *          up by this process.
  4557.        */
  4558.       checkForUpdates: function(installManifest, installData, xpiFile, installRDF) {
  4559.         this._id              = installData.id;
  4560.         this._type            = installData.type;
  4561.         this._xpi             = xpiFile;
  4562.         this._installManifest = installManifest;
  4563.         this._installRDF      = installRDF;
  4564.         
  4565.         var item = makeItem(installData.id, installData.version, 
  4566.                             aInstallLocationKey, 
  4567.                             installData.currentApp.minVersion, 
  4568.                             installData.currentApp.maxVersion,
  4569.                             installData.name,
  4570.                             "", /* XPI Update URL */
  4571.                             "", /* XPI Update Hash */
  4572.                             "", /* Icon URL */
  4573.                             installData.updateURL || "", 
  4574.                             installData.type);
  4575.         em.update([item], 1, true, this);
  4576.       },
  4577.       
  4578.       /**
  4579.        * See nsIExtensionManager.idl
  4580.        */
  4581.       onUpdateStarted: function() {
  4582.         LOG("Phone Home Listener: Update Started");
  4583.         em.datasource.onUpdateStarted();
  4584.       },
  4585.       
  4586.       /**
  4587.        * See nsIExtensionManager.idl
  4588.        */
  4589.       onUpdateEnded: function() {
  4590.         LOG("Phone Home Listener: Update Ended");
  4591.         // We are responsible for cleaning up this file!
  4592.         this._installRDF.remove(false);
  4593.         em.datasource.onUpdateEnded();
  4594.       },
  4595.       
  4596.       /**
  4597.        * See nsIExtensionManager.idl
  4598.        */
  4599.       onAddonUpdateStarted: function(addon) {
  4600.         LOG("Phone Home Listener: Update For " + addon.id + " started");
  4601.         em.datasource.addIncompatibleUpdateItem(addon.name, this._xpi.path,
  4602.                                                 addon.type, addon.version);
  4603.         em.datasource.onAddonUpdateStarted(addon);
  4604.       },
  4605.       
  4606.       /**
  4607.        * See nsIExtensionManager.idl
  4608.        */
  4609.       onAddonUpdateEnded: function(addon, status) {
  4610.         LOG("Phone Home Listener: Update For " + addon.id + " ended, status = " + status); 
  4611.         em.datasource.removeDownload(this._xpi.path);
  4612.         LOG("Version Check Phone Home Completed");
  4613.         // Only compatibility updates (e.g. STATUS_VERSIONINFO) are currently
  4614.         // supported
  4615.         if (status == nsIAddonUpdateCheckListener.STATUS_VERSIONINFO) {
  4616.           em.datasource.setTargetApplicationInfo(addon.id, 
  4617.                                                  addon.minAppVersion,
  4618.                                                  addon.maxAppVersion, 
  4619.                                                  this._installManifest);
  4620.  
  4621.           // Try and install again, but use the updated compatibility DB
  4622.           em.installItemFromFileInternal(this._xpi, aInstallLocationKey, 
  4623.                                          this._installManifest);
  4624.  
  4625.           // Add the updated compatibility info to the datasource if done
  4626.           if (StartupCache.entries[aInstallLocationKey][addon.id].op == OP_NONE) {
  4627.             em.datasource.updateTargetAppInfo(addon.id, addon.minAppVersion,
  4628.                                               addon.maxAppVersion);
  4629.           }
  4630.           else { // needs a restart
  4631.             // Add updatedMinVersion and updatedMaxVersion so it can be used
  4632.             // to update the data sources during the installation or upgrade.
  4633.             em.datasource.setUpdatedTargetAppInfo(addon.id, addon.minAppVersion,
  4634.                                                   addon.maxAppVersion);
  4635.           }
  4636.           // Prevent the datasource file from being lazily recreated after
  4637.           // it is deleted by calling Flush.
  4638.           this._installManifest.QueryInterface(Components.interfaces.nsIRDFRemoteDataSource);
  4639.           this._installManifest.Flush();
  4640.         }
  4641.         else {
  4642.           em.datasource.removeDownload(this._xpi.path);
  4643.           showIncompatibleError(installData);
  4644.           // We are responsible for cleaning up this file!
  4645.           InstallLocations.get(aInstallLocationKey).removeFile(this._xpi);
  4646.         }
  4647.         em.datasource.onAddonUpdateEnded(addon, status);
  4648.       },
  4649.  
  4650.       /**
  4651.        * See nsISupports.idl
  4652.        */
  4653.       QueryInterface: function(iid) {
  4654.         if (!iid.equals(Components.interfaces.nsIAddonUpdateCheckListener) &&
  4655.             !iid.equals(Components.interfaces.nsISupports))
  4656.           throw Components.results.NS_ERROR_NO_INTERFACE;
  4657.         return this;
  4658.       }
  4659.     }
  4660.  
  4661.     var installManifestFile = extractRDFFileToTempDir(aXPIFile, FILE_INSTALL_MANIFEST, true);
  4662.     var shouldPhoneHomeIfNecessary = false;
  4663.     if (!aInstallManifest) {
  4664.       // If we were not called with an Install Manifest, we were called from 
  4665.       // some other path than the Phone Home system, so we do want to phone
  4666.       // home if the version is incompatible.
  4667.       shouldPhoneHomeIfNecessary = true;
  4668.       var installManifest = getInstallManifest(installManifestFile);
  4669.       if (!installManifest) {
  4670.         LOG("The Install Manifest supplied by this item is not well-formed. " + 
  4671.             "Installation will not proceed.");
  4672.         installManifestFile.remove(false);
  4673.         return;
  4674.       }
  4675.     }
  4676.     else
  4677.       installManifest = aInstallManifest;
  4678.     
  4679.     var installData = this._getInstallData(installManifest);
  4680.     switch (installData.error) {
  4681.     case INSTALLERROR_INCOMPATIBLE_VERSION:
  4682.       // Since the caller cleans up |aXPIFile|, and we're not yet sure whether or
  4683.       // not we need it (we may need it if a remote version bump that makes it 
  4684.       // compatible is discovered by the call home) - so we must stage it for 
  4685.       // later ourselves.
  4686.       if (shouldPhoneHomeIfNecessary && installData.currentApp) {
  4687.         var installLocation = getInstallLocation(installData.id, aInstallLocationKey);
  4688.         if (!installLocation) {
  4689.           installManifestFile.remove(false);
  4690.           return;
  4691.         }
  4692.         var stagedFile = installLocation.stageFile(aXPIFile, installData.id);
  4693.         (new IncompatibleObserver(this)).checkForUpdates(installManifest, 
  4694.                                                          installData, stagedFile,
  4695.                                                          installManifestFile);
  4696.         // Return early to prevent deletion of the install manifest file.
  4697.         return;
  4698.       }
  4699.       else {
  4700.         // XXXben Look up XULRunnerSettingsThingy to see if there is a registered
  4701.         //        app that can handle this item, if so just stage and don't show
  4702.         //        this error!
  4703.         showIncompatibleError(installData);
  4704.       }
  4705.       break;
  4706.     case INSTALLERROR_SUCCESS:
  4707.       // Installation of multiple extensions / themes contained within a single xpi.
  4708.       if (installData.type == nsIUpdateItem.TYPE_MULTI_XPI) {
  4709.         installMultiXPI(aXPIFile, installData);
  4710.         break;
  4711.       }
  4712.  
  4713.       // Stage the extension's XPI so it can be extracted at the next restart.
  4714.       var installLocation = getInstallLocation(installData.id, aInstallLocationKey);
  4715.       if (!installLocation) {
  4716.         // No cleanup of any of the staged XPI files should be required here, 
  4717.         // because this should only ever fail on the first recurse through
  4718.         // this function, BEFORE staging takes place... technically speaking
  4719.         // a location could become readonly during the phone home process, 
  4720.         // but that's an edge case I don't care about.
  4721.         installManifestFile.remove(false);
  4722.         return;
  4723.       }
  4724.  
  4725.       // Stage a copy of the XPI/JAR file for our own evil purposes...
  4726.       stagedFile = installLocation.stageFile(aXPIFile, installData.id);
  4727.       
  4728.       var restartRequired = this.installRequiresRestart(installData.id, 
  4729.                                                         installData.type);
  4730.       // Determine which configuration function to use based on whether or not
  4731.       // there is data about this item in our datasource already - if there is 
  4732.       // we want to upgrade, otherwise we install fresh.
  4733.       var ds = this.datasource;
  4734.       if (installData.id in ds.visibleItems && ds.visibleItems[installData.id]) {
  4735.         // We enter this function if any data corresponding to an existing GUID
  4736.         // is found, regardless of its Install Location. We need to check before
  4737.         // "upgrading" an item that Install Location of the new item is of equal
  4738.         // or higher priority than the old item, to make sure the datasource only
  4739.         // ever tracks metadata for active items.
  4740.         var oldInstallLocation = this.getInstallLocation(installData.id);
  4741.         if (oldInstallLocation.priority >= installLocation.priority) {
  4742.           this._upgradeItem(installManifest, installData.id, installLocation, 
  4743.                             installData.type);
  4744.           if (!restartRequired) {
  4745.             this._finalizeUpgrade(installData.id);
  4746.             this._finalizeInstall(installData.id, stagedFile);
  4747.           }
  4748.         }
  4749.       }
  4750.       else {
  4751.         this._configureForthcomingItem(installManifest, installData.id, 
  4752.                                         installLocation, installData.type);
  4753.         if (!restartRequired)
  4754.           this._finalizeInstall(installData.id, stagedFile);
  4755.       }
  4756.       this._updateManifests(restartRequired);
  4757.       break;
  4758.     case INSTALLERROR_INVALID_GUID:
  4759.       LOG("Invalid GUID: Item has GUID: \"" + installData.id + "\"" + 
  4760.           " which is not well-formed.");
  4761.       var bundle = BundleManager.getBundle(URI_EXTENSIONS_PROPERTIES);
  4762.       showMessage("incompatibleTitle", 
  4763.                   [bundle.GetStringFromName("type-" + installData.type)], 
  4764.                   "invalidGUIDMessage", [installData.name, installData.id]);
  4765.       break;
  4766.     case INSTALLERROR_INVALID_VERSION:
  4767.       LOG("Invalid Version: Item: \"" + installData.id + "\" has version " + 
  4768.           installData.version + " which is not well-formed.");
  4769.       var bundle = BundleManager.getBundle(URI_EXTENSIONS_PROPERTIES);
  4770.       showMessage("incompatibleTitle", 
  4771.                   [bundle.GetStringFromName("type-" + installData.type)], 
  4772.                   "invalidVersionMessage", [installData.name, installData.version]);
  4773.       break;
  4774.     case INSTALLERROR_INCOMPATIBLE_PLATFORM:
  4775.       const osABI = gOSTarget + "_" + gXPCOMABI;
  4776.       LOG("Incompatible Platform: Item: \"" + installData.id + "\" is not " + 
  4777.           "compatible with '" + osABI + "'.");
  4778.       var bundle = BundleManager.getBundle(URI_EXTENSIONS_PROPERTIES);
  4779.       showMessage("incompatibleTitle", 
  4780.                   [bundle.GetStringFromName("type-" + installData.type)], 
  4781.                   "incompatiblePlatformMessage",
  4782.                   [installData.name, BundleManager.appName, osABI]);
  4783.       break;
  4784.     case INSTALLERROR_BLOCKLISTED:
  4785.       LOG("Blocklisted Item: Item: \"" + installData.id + "\" version " + 
  4786.           installData.version + " was not installed.");
  4787.       showBlocklistMessage([installData], true);
  4788.       break;
  4789.     default:
  4790.       break;
  4791.     }
  4792.     
  4793.     // Check to see if this item supports other applications and in that case
  4794.     // stage the the XPI file in the location specified by those applications.
  4795.     stageXPIForOtherApps(aXPIFile, installData);
  4796.  
  4797.     installManifestFile.remove(false);
  4798.   },
  4799.   
  4800.   /**
  4801.    * Whether or not this type's installation/uninstallation requires 
  4802.    * the application to be restarted.
  4803.    * @param   id
  4804.    *          The GUID of the item
  4805.    * @param   type
  4806.    *          The nsIUpdateItem type of the item
  4807.    * @returns true if installation of an item of this type requires a 
  4808.    *          restart.
  4809.    */
  4810.   installRequiresRestart: function(id, type) {
  4811.     switch (type) {
  4812.     case nsIUpdateItem.TYPE_THEME:
  4813.       var internalName = this.datasource.getItemProperty(id, "internalName");
  4814.       var needsRestart = false;
  4815.       if (gPref.prefHasUserValue(PREF_DSS_SKIN_TO_SELECT))
  4816.         needsRestart = internalName == gPref.getCharPref(PREF_DSS_SKIN_TO_SELECT);
  4817.       if (!needsRestart &&
  4818.           gPref.prefHasUserValue(PREF_GENERAL_SKINS_SELECTEDSKIN))
  4819.         needsRestart = internalName == gPref.getCharPref(PREF_GENERAL_SKINS_SELECTEDSKIN);
  4820.       return needsRestart;
  4821.     }
  4822.     return true;
  4823.   },
  4824.   
  4825.   /**
  4826.    * Perform initial configuration on an item that has just or will be 
  4827.    * installed. This inserts the item into the appropriate container in the
  4828.    * datasource, so that the application UI shows the item even if it will
  4829.    * not actually be installed until the next restart.
  4830.    * @param   installManifest 
  4831.    *          The Install Manifest datasource that describes this item.
  4832.    * @param   id          
  4833.    *          The GUID of this item.
  4834.    * @param   installLocation
  4835.    *          The Install Location where this item is installed.
  4836.    * @param   type
  4837.    *          The nsIUpdateItem type of this item. 
  4838.    */  
  4839.   _configureForthcomingItem: function(installManifest, id, installLocation, type) {
  4840.     var ds = this.datasource;
  4841.     ds.updateVisibleList(id, installLocation.name, false);
  4842.     var props = { name            : EM_L(getManifestProperty(installManifest, "name")),
  4843.                   version         : EM_L(getManifestProperty(installManifest, "version")),
  4844.                   installLocation : EM_L(installLocation.name),
  4845.                   type            : EM_I(type),
  4846.                   availableUpdateURL    : null,
  4847.                   availableUpdateHash   : null,
  4848.                   availableUpdateVersion: null };
  4849.     for (var p in props)
  4850.       ds.setItemProperty(id, EM_R(p), props[p]);
  4851.     ds.updateProperty(id, "availableUpdateURL");
  4852.     
  4853.     this._setOp(id, OP_NEEDS_INSTALL);
  4854.     
  4855.     // Insert it into the child list NOW rather than later because:
  4856.     // - extensions installed using the command line need to be a member
  4857.     //   of a container during the install phase for the code to be able
  4858.     //   to identify profile vs. global
  4859.     // - extensions installed through the UI should show some kind of
  4860.     //   feedback to indicate their presence is forthcoming (i.e. they
  4861.     //   will be available after a restart).
  4862.     ds.insertItemIntoContainer(id);
  4863.     
  4864.     this._notifyAction(id, EM_ITEM_INSTALLED);
  4865.   },
  4866.   
  4867.   /**
  4868.    * Perform configuration on an item that has just or will be upgraded.
  4869.    * @param   installManifest
  4870.    *          The Install Manifest datasource that describes this item.
  4871.    * @param   itemID
  4872.    *          The GUID of this item.
  4873.    * @param   installLocation
  4874.    *          The Install Location where this item is installed.
  4875.    * @param   type
  4876.    *          The nsIUpdateItem type of this item. 
  4877.    */
  4878.   _upgradeItem: function (installManifest, id, installLocation, type) {
  4879.     // Don't change any props that would need to be reset if the install fails.
  4880.     // They will be reset as appropriate by the upgrade/install process.
  4881.     var ds = this.datasource;
  4882.     ds.updateVisibleList(id, installLocation.name, false);
  4883.     var props = { installLocation : EM_L(installLocation.name),
  4884.                   type            : EM_I(type),
  4885.                   availableUpdateURL      : null,
  4886.                   availableUpdateHash     : null,
  4887.                   availableUpdateVersion  : null };
  4888.     for (var p in props)
  4889.       ds.setItemProperty(id, EM_R(p), props[p]);
  4890.     ds.updateProperty(id, "availableUpdateURL");
  4891.  
  4892.     this._setOp(id, OP_NEEDS_UPGRADE);
  4893.     this._notifyAction(id, EM_ITEM_UPGRADED);
  4894.   },
  4895.  
  4896.   /** 
  4897.    * Completes an Extension's installation.
  4898.    * @param   id
  4899.    *          The GUID of the Extension to install.
  4900.    * @param   file
  4901.    *          The XPI/JAR file to install from. If this is null, we try to
  4902.    *          determine the stage file location from the ID.
  4903.    */
  4904.   _finalizeInstall: function(id, file) {
  4905.     var ds = this.datasource;
  4906.     var type = ds.getItemProperty(id, "type");
  4907.     if (id == 0 || id == -1) {
  4908.       ds.removeCorruptItem(id, type);
  4909.       return;
  4910.     }
  4911.     var installLocation = this.getInstallLocation(id);
  4912.     if (!installLocation) {
  4913.       // If the install location is null, that means we've reached the finalize
  4914.       // state without the item ever having metadata added for it, which implies
  4915.       // bogus data in the Startup Cache. Clear the entries and don't do anything
  4916.       // else.
  4917.       var entries = StartupCache.findEntries(id);
  4918.       for (var i = 0; i < entries.length; ++i) {
  4919.         var location = InstallLocations.get(entries[i].location);
  4920.         StartupCache.clearEntry(location, id);
  4921.         PendingOperations.clearItem(OP_NEEDS_INSTALL, id);
  4922.       }
  4923.       return;
  4924.     }
  4925.     var itemLocation = installLocation.getItemLocation(id);
  4926.  
  4927.     if (!file && "stageFile" in installLocation)
  4928.       file = installLocation.getStageFile(id);
  4929.     
  4930.     // If |file| is null or does not exist, the installer assumes the item is
  4931.     // a dropped-in directory.
  4932.     var installer = new Installer(this.datasource, id, installLocation, type);
  4933.     installer.installFromFile(file);
  4934.  
  4935.     // If the file was staged, we must clean it up ourselves, otherwise the 
  4936.     // EM caller is responsible for doing so (e.g. XPInstall)
  4937.     if (file)
  4938.       installLocation.removeFile(file);
  4939.     
  4940.     // Clear the op flag from the Startup Cache and Pending Operations sets
  4941.     StartupCache.put(installLocation, id, OP_NONE, true);
  4942.     PendingOperations.clearItem(OP_NEEDS_INSTALL, id);
  4943.   },
  4944.  
  4945.   /**
  4946.    * Removes an item's metadata in preparation for an upgrade-install.
  4947.    * @param   id
  4948.    *          The GUID of the item to uninstall.
  4949.    */
  4950.   _finalizeUpgrade: function(id) {
  4951.     // Retrieve the item properties *BEFORE* we clean the resource!
  4952.     var ds = this.datasource;
  4953.     var installLocation = this.getInstallLocation(id);
  4954.  
  4955.     var stagedFile = null;
  4956.     if ("getStageFile" in installLocation)
  4957.       stagedFile = installLocation.getStageFile(id);
  4958.  
  4959.     if (stagedFile)
  4960.       var installRDF = extractRDFFileToTempDir(stagedFile, FILE_INSTALL_MANIFEST, true);
  4961.     else
  4962.       installRDF = installLocation.getItemFile(id, FILE_INSTALL_MANIFEST);
  4963.     if (installRDF.exists()) {
  4964.       var installManifest = getInstallManifest(installRDF);
  4965.       if (installManifest) {
  4966.         var type = getAddonTypeFromInstallManifest(installManifest);
  4967.         var userDisabled = ds.getItemProperty(id, "userDisabled") == "true";
  4968.  
  4969.         // Clean the item resource
  4970.         ds.removeItemMetadata(id);
  4971.         // Now set up the properties on the item to mimic an item in its
  4972.         // "initial state" for installation.
  4973.         this._configureForthcomingItem(installManifest, id, installLocation, 
  4974.                                        type);
  4975.         if (userDisabled)
  4976.           ds.setItemProperty(id, EM_R("userDisabled"), EM_L("true"));
  4977.       }
  4978.       if (stagedFile)
  4979.         installRDF.remove(false);
  4980.     }
  4981.     // Clear the op flag from the Pending Operations set. Do NOT clear op flag in 
  4982.     // the startup cache since this may have been reset to OP_NEEDS_INSTALL by
  4983.     // |_configureForthcomingItem|.
  4984.     PendingOperations.clearItem(OP_NEEDS_UPGRADE, id);
  4985.   },
  4986.   
  4987.   /**
  4988.    * Completes an item's uninstallation.
  4989.    * @param   id
  4990.    *          The GUID of the item to uninstall.
  4991.    */
  4992.   _finalizeUninstall: function(id) {
  4993.     var ds = this.datasource;
  4994.     
  4995.     var installLocation = this.getInstallLocation(id);
  4996.     if (!installLocation.itemIsManagedIndependently(id)) {
  4997.       try {
  4998.         // Having a callback that does nothing just causes the directory to be
  4999.         // removed.
  5000.         safeInstallOperation(id, installLocation, 
  5001.                              { data: null, callback: function() { } });
  5002.       }
  5003.       catch (e) {
  5004.         LOG("_finalizeUninstall: failed to remove directory for item: " + id + 
  5005.             " at Install Location: " + installLocation.name + ", rolling back uninstall");
  5006.         // Removal of the files failed, reset the uninstalled flag and rewrite
  5007.         // the install manifests so this item's components are registered.
  5008.         // Clear the op flag from the Startup Cache
  5009.         StartupCache.put(installLocation, id, OP_NONE, true);
  5010.         var restartRequired = this.installRequiresRestart(id, ds.getItemProperty(id, "type"))
  5011.         this._updateManifests(restartRequired);
  5012.         return;
  5013.       }
  5014.     }
  5015.     else if (installLocation.name == KEY_APP_PROFILE ||
  5016.              installLocation.name == KEY_APP_GLOBAL) {
  5017.       // Check for a pointer file and remove it if it exists
  5018.       var pointerFile = installLocation.location.clone();
  5019.       pointerFile.append(id);
  5020.       if (pointerFile.exists() && !pointerFile.isDirectory())
  5021.         pointerFile.remove(false);
  5022.     }
  5023.     
  5024.     // Clean the item resource
  5025.     ds.removeItemMetadata(id);
  5026.     
  5027.     // Do this LAST since inferences are made about an item based on
  5028.     // what container it's in.
  5029.     ds.removeItemFromContainer(id);
  5030.     
  5031.     // Clear the op flag from the Startup Cache and the Pending Operations set.
  5032.     StartupCache.clearEntry(installLocation, id);
  5033.     PendingOperations.clearItem(OP_NEEDS_UNINSTALL, id);
  5034.   },
  5035.   
  5036.   /**
  5037.    * Uninstalls an item. If the uninstallation cannot be performed immediately
  5038.    * it is scheduled for the next restart.
  5039.    * @param   id
  5040.    *          The GUID of the item to uninstall.
  5041.    */
  5042.   uninstallItem: function(id) {
  5043.     var ds = this.datasource;
  5044.     ds.updateDownloadState(PREFIX_ITEM_URI + id, null);
  5045.     if (!ds.isDownloadItem(id)) {
  5046.       var opType = ds.getItemProperty(id, "opType");
  5047.       var installLocation = this.getInstallLocation(id);
  5048.       // Removes any staged xpis for this item.
  5049.       if (opType == OP_NEEDS_UPGRADE || opType == OP_NEEDS_INSTALL) {
  5050.         var stageFile = installLocation.getStageFile(id);
  5051.         if (stageFile)
  5052.           installLocation.removeFile(stageFile);
  5053.       }
  5054.       // Addons with an opType of OP_NEEDS_INSTALL only have a staged xpi file
  5055.       // and are removed immediately since the uninstall can't be canceled.
  5056.       if (opType == OP_NEEDS_INSTALL) {
  5057.         ds.removeItemMetadata(id);
  5058.         ds.removeItemFromContainer(id);
  5059.         ds.updateVisibleList(id, null, true);
  5060.         StartupCache.clearEntry(installLocation, id);
  5061.         this._updateManifests(false);
  5062.       }
  5063.       else {
  5064.         this._setOp(id, OP_NEEDS_UNINSTALL);
  5065.         var type = ds.getItemProperty(id, "type");
  5066.         var restartRequired = this.installRequiresRestart(id, type);
  5067.         if (!restartRequired) {
  5068.           this._finalizeUninstall(id);
  5069.           this._updateManifests(restartRequired);
  5070.         }
  5071.       }
  5072.     }
  5073.     else {
  5074.       // Bad download entry - uri is url, e.g. "http://www.foo.com/test.xpi"
  5075.       // ... just remove it from the list. 
  5076.       ds.removeCorruptDLItem(id);
  5077.     }
  5078.     
  5079.     this._notifyAction(id, EM_ITEM_UNINSTALLED);
  5080.   },
  5081.  
  5082.   /**
  5083.    * Cancels a pending uninstall of an item
  5084.    * @param   id
  5085.    *          The ID of the item.
  5086.    */
  5087.   cancelUninstallItem: function(id) {
  5088.     var ds = this.datasource;
  5089.     var appDisabled = ds.getItemProperty(id, "appDisabled");
  5090.     var userDisabled = ds.getItemProperty(id, "userDisabled");
  5091.     if (appDisabled == "true" || appDisabled == OP_NONE && userDisabled == OP_NONE) {
  5092.       this._setOp(id, OP_NONE);
  5093.       this._notifyAction(id, EM_ITEM_CANCEL);
  5094.     }
  5095.     else if (appDisabled == OP_NEEDS_DISABLE || userDisabled == OP_NEEDS_DISABLE) {
  5096.       this._setOp(id, OP_NEEDS_DISABLE);
  5097.       this._notifyAction(id, EM_ITEM_DISABLED);
  5098.     }
  5099.     else if (appDisabled == OP_NEEDS_ENABLE || userDisabled == OP_NEEDS_ENABLE) {
  5100.       this._setOp(id, OP_NEEDS_ENABLE);
  5101.       this._notifyAction(id, EM_ITEM_ENABLED);
  5102.     }
  5103.     else {
  5104.       this._setOp(id, OP_NONE);
  5105.       this._notifyAction(id, EM_ITEM_CANCEL);
  5106.     }
  5107.   },
  5108.  
  5109.   /**
  5110.    * Sets the pending operation for a visible item. 
  5111.    * @param   id
  5112.    *          The GUID of the item
  5113.    * @param   op
  5114.    *          The name of the operation to be performed
  5115.    */  
  5116.   _setOp: function(id, op) {
  5117.     var location = this.getInstallLocation(id);
  5118.     StartupCache.put(location, id, op, true);
  5119.     PendingOperations.addItem(op, { locationKey: location.name, id: id });
  5120.     var ds = this.datasource;
  5121.     if (op == OP_NEEDS_INSTALL || op == OP_NEEDS_UPGRADE)
  5122.       ds.updateDownloadState(PREFIX_ITEM_URI + id, "success");
  5123.  
  5124.     ds.updateProperty(id, "opType");
  5125.     ds.updateProperty(id, "updateable");
  5126.     ds.updateProperty(id, "satisfiesDependencies");
  5127.     var restartRequired = this.installRequiresRestart(id, ds.getItemProperty(id, "type"))
  5128.     this._updateDependentItemsForID(id);
  5129.     this._updateManifests(restartRequired);
  5130.   },
  5131.   
  5132.   /**
  5133.    * Note on appDisabled and userDisabled property arcs.
  5134.    * The appDisabled and userDisabled RDF property arcs are used to store
  5135.    * the pending operation for app disabling and user disabling for an item as
  5136.    * well as the user and app disabled status after the pending operation has
  5137.    * been completed upon restart. When the appDisabled value changes the value
  5138.    * of userDisabled is reset to prevent the state of widgets and status
  5139.    * messages from being in an incorrect state.
  5140.    */
  5141.  
  5142.   /**
  5143.    * Enables an item for the application (e.g. the item satisfies all
  5144.    * requirements like app compatibility for it to be enabled). The appDisabled
  5145.    * property arc will be removed if the item will be app disabled on next
  5146.    * restart to cancel the app disabled operation for the item otherwise the
  5147.    * property value will be set to OP_NEEDS_ENABLE. The item's pending
  5148.    * operations are then evaluated in order to set the operation to perform
  5149.    * and notify the observers if the operation has been changed.
  5150.    * See "Note on appDisabled and userDisabled property arcs" above.
  5151.    * @param   id
  5152.    *          The ID of the item to be enabled by the application.
  5153.    */
  5154.   _appEnableItem: function(id) {
  5155.     var ds = this.datasource;
  5156.     var appDisabled = ds.getItemProperty(id, "appDisabled");
  5157.     if (appDisabled == OP_NONE || appDisabled == OP_NEEDS_ENABLE)
  5158.       return;
  5159.  
  5160.     var opType = ds.getItemProperty(id, "opType");
  5161.     var userDisabled = ds.getItemProperty(id, "userDisabled");
  5162.     // reset user disabled if it has a pending operation to prevent the ui
  5163.     // state from getting confused as to an item's current state.
  5164.     if (userDisabled == OP_NEEDS_DISABLE)
  5165.       ds.setItemProperty(id, EM_R("userDisabled"), null);
  5166.     else if (userDisabled == OP_NEEDS_ENABLE)
  5167.       ds.setItemProperty(id, EM_R("userDisabled"), EM_L("true"));
  5168.  
  5169.     if (appDisabled == OP_NEEDS_DISABLE)
  5170.       ds.setItemProperty(id, EM_R("appDisabled"), null);
  5171.     else if (appDisabled == "true")
  5172.       ds.setItemProperty(id, EM_R("appDisabled"), EM_L(OP_NEEDS_ENABLE));
  5173.  
  5174.     // Don't set a new operation when there is a pending uninstall operation.
  5175.     if (opType == OP_NEEDS_UNINSTALL) {
  5176.       this._updateDependentItemsForID(id);
  5177.       return;
  5178.     }
  5179.  
  5180.     var operation, action;
  5181.     // if this item is already enabled or user disabled don't set a pending
  5182.     // operation - instead immediately enable it and reset the operation type
  5183.     // if needed.
  5184.     if (appDisabled == OP_NEEDS_DISABLE || appDisabled == OP_NONE ||
  5185.         userDisabled == "true") {
  5186.       if (opType != OP_NONE) {
  5187.         operation = OP_NONE;
  5188.         action = EM_ITEM_CANCEL;
  5189.       }
  5190.     }
  5191.     else {
  5192.       if (opType != OP_NEEDS_ENABLE) {
  5193.         operation = OP_NEEDS_ENABLE;
  5194.         action = EM_ITEM_ENABLED;
  5195.       }
  5196.     }
  5197.  
  5198.     if (action) {
  5199.       this._setOp(id, operation);
  5200.       this._notifyAction(id, action);
  5201.     }
  5202.     else {
  5203.       ds.updateProperty(id, "satisfiesDependencies");
  5204.       this._updateDependentItemsForID(id);
  5205.     }
  5206.   },
  5207.  
  5208.   /**
  5209.    * Disables an item for the application (e.g. the item doesn't satisfy all
  5210.    * requirements like app compatibility for it to be enabled). The appDisabled
  5211.    * property arc will be set to true if the item will be app enabled on next
  5212.    * restart to cancel the app enabled operation for the item otherwise the
  5213.    * property value will be set to OP_NEEDS_DISABLE. The item's pending
  5214.    * operations are then evaluated in order to set the operation to perform
  5215.    * and notify the observers if the operation has been changed.
  5216.    * See "Note on appDisabled and userDisabled property arcs" above.
  5217.    * @param   id
  5218.    *          The ID of the item to be disabled by the application.
  5219.    */
  5220.   _appDisableItem: function(id) {
  5221.     var ds = this.datasource;
  5222.     var appDisabled = ds.getItemProperty(id, "appDisabled");
  5223.     if (appDisabled == "true" || appDisabled == OP_NEEDS_DISABLE)
  5224.       return;
  5225.  
  5226.     var opType = ds.getItemProperty(id, "opType");
  5227.     var userDisabled = ds.getItemProperty(id, "userDisabled");
  5228.  
  5229.     // reset user disabled if it has a pending operation to prevent the ui
  5230.     // state from getting confused as to an item's current state.
  5231.     if (userDisabled == OP_NEEDS_DISABLE)
  5232.       ds.setItemProperty(id, EM_R("userDisabled"), null);
  5233.     else if (userDisabled == OP_NEEDS_ENABLE)
  5234.       ds.setItemProperty(id, EM_R("userDisabled"), EM_L("true"));
  5235.  
  5236.     if (appDisabled == OP_NEEDS_ENABLE || userDisabled == OP_NEEDS_ENABLE ||
  5237.         ds.getItemProperty(id, "userDisabled") == "true")
  5238.       ds.setItemProperty(id, EM_R("appDisabled"), EM_L("true"));
  5239.     else if (appDisabled == OP_NONE)
  5240.       ds.setItemProperty(id, EM_R("appDisabled"), EM_L(OP_NEEDS_DISABLE));
  5241.  
  5242.     // Don't set a new operation when there is a pending uninstall operation.
  5243.     if (opType == OP_NEEDS_UNINSTALL) {
  5244.       this._updateDependentItemsForID(id);
  5245.       return;
  5246.     }
  5247.  
  5248.     var operation, action;
  5249.     // if this item is already disabled don't set a pending operation - instead
  5250.     // immediately disable it and reset the operation type if needed.
  5251.     if (appDisabled == OP_NEEDS_ENABLE || appDisabled == "true" ||
  5252.         userDisabled == OP_NEEDS_ENABLE || userDisabled == "true") {
  5253.       if (opType != OP_NONE) {
  5254.         operation = OP_NONE;
  5255.         action = EM_ITEM_CANCEL;
  5256.       }
  5257.     }
  5258.     else {
  5259.       if (opType != OP_NEEDS_DISABLE) {
  5260.         operation = OP_NEEDS_DISABLE;
  5261.         action = EM_ITEM_DISABLED;
  5262.       }
  5263.     }
  5264.  
  5265.     if (action) {
  5266.       this._setOp(id, operation);
  5267.       this._notifyAction(id, action);
  5268.     }
  5269.     else {
  5270.       ds.updateProperty(id, "satisfiesDependencies");
  5271.       this._updateDependentItemsForID(id);
  5272.     }
  5273.   },
  5274.     
  5275.   /**
  5276.    * Sets an item to be enabled by the user. If the item is already enabled this
  5277.    * clears the needs-enable operation for the next restart.
  5278.    * See "Note on appDisabled and userDisabled property arcs" above.
  5279.    * @param   id
  5280.    *          The ID of the item to be enabled by the user.
  5281.    */
  5282.   enableItem: function(id) {
  5283.     var ds = this.datasource;
  5284.     var opType = ds.getItemProperty(id, "opType");
  5285.     var appDisabled = ds.getItemProperty(id, "appDisabled");
  5286.     var userDisabled = ds.getItemProperty(id, "userDisabled");
  5287.  
  5288.     var operation, action;
  5289.     // if this item is already enabled don't set a pending operation - instead
  5290.     // immediately enable it and reset the operation type if needed.
  5291.     if (appDisabled == OP_NONE &&
  5292.         userDisabled == OP_NEEDS_DISABLE || userDisabled == OP_NONE) {
  5293.       if (userDisabled == OP_NEEDS_DISABLE)
  5294.         ds.setItemProperty(id, EM_R("userDisabled"), null);
  5295.       if (opType != OP_NONE) {
  5296.         operation = OP_NONE;
  5297.         action = EM_ITEM_CANCEL;
  5298.       }
  5299.     }
  5300.     else {
  5301.       if (userDisabled == "true")
  5302.         ds.setItemProperty(id, EM_R("userDisabled"), EM_L(OP_NEEDS_ENABLE));
  5303.       if (opType != OP_NEEDS_ENABLE) {
  5304.         operation = OP_NEEDS_ENABLE;
  5305.         action = EM_ITEM_ENABLED;
  5306.       }
  5307.     }
  5308.  
  5309.     if (action) {
  5310.       this._setOp(id, operation);
  5311.       this._notifyAction(id, action);
  5312.     }
  5313.     else {
  5314.       ds.updateProperty(id, "satisfiesDependencies");
  5315.       this._updateDependentItemsForID(id);
  5316.     }
  5317.   },
  5318.   
  5319.   /**
  5320.    * Sets an item to be disabled by the user. If the item is already disabled
  5321.    * this clears the needs-disable operation for the next restart.
  5322.    * See "Note on appDisabled and userDisabled property arcs" above.
  5323.    * @param   id
  5324.    *          The ID of the item to be disabled by the user.
  5325.    */
  5326.   disableItem: function(id) {
  5327.     var ds = this.datasource;
  5328.     var opType = ds.getItemProperty(id, "opType");
  5329.     var appDisabled = ds.getItemProperty(id, "appDisabled");
  5330.     var userDisabled = ds.getItemProperty(id, "userDisabled");
  5331.  
  5332.     var operation, action;
  5333.     // if this item is already disabled don't set a pending operation - instead
  5334.     // immediately disable it and reset the operation type if needed.
  5335.     if (userDisabled == OP_NEEDS_ENABLE || userDisabled == "true" ||
  5336.         appDisabled == OP_NEEDS_ENABLE) {
  5337.       if (userDisabled != "true")
  5338.         ds.setItemProperty(id, EM_R("userDisabled"), EM_L("true"));
  5339.       if (opType != OP_NONE) {
  5340.         operation = OP_NONE;
  5341.         action = EM_ITEM_CANCEL;
  5342.       }
  5343.     }
  5344.     else {
  5345.       if (userDisabled == OP_NONE)
  5346.         ds.setItemProperty(id, EM_R("userDisabled"), EM_L(OP_NEEDS_DISABLE));
  5347.       if (opType != OP_NEEDS_DISABLE) {
  5348.         operation = OP_NEEDS_DISABLE;
  5349.         action = EM_ITEM_DISABLED;
  5350.       }
  5351.     }
  5352.  
  5353.     if (action) {
  5354.       this._setOp(id, operation);
  5355.       this._notifyAction(id, action);
  5356.     }
  5357.     else {
  5358.       ds.updateProperty(id, "satisfiesDependencies");
  5359.       this._updateDependentItemsForID(id);
  5360.     }
  5361.   },
  5362.   
  5363.   /**
  5364.    * Determines whether an item should be disabled by the application.
  5365.    * @param   id
  5366.    *          The ID of the item to check
  5367.    */
  5368.   _isUsableItem: function(id) {
  5369.     var ds = this.datasource;
  5370.     return ((!gCheckCompatibility || ds.getItemProperty(id, "compatible") == "true") &&
  5371.             ds.getItemProperty(id, "blocklisted") == "false" &&
  5372.             ds.getItemProperty(id, "satisfiesDependencies") == "true");
  5373.   },
  5374.  
  5375.   /**
  5376.    * Sets an item's dependent items disabled state for the app based on whether
  5377.    * its dependencies are met and the item is compatible.
  5378.    * @param   id
  5379.    *          The ID of the item whose dependent items will be checked
  5380.    */
  5381.   _updateDependentItemsForID: function(id) {
  5382.     var ds = this.datasource;
  5383.     var dependentItems = this.getDependentItemListForID(id, true, { });
  5384.     for (var i = 0; i < dependentItems.length; ++i) {
  5385.       var dependentID = dependentItems[i].id;
  5386.       ds.updateProperty(dependentID, "satisfiesDependencies");
  5387.       if (this._isUsableItem(dependentID))
  5388.         this._appEnableItem(dependentID);
  5389.       else
  5390.         this._appDisableItem(dependentID);
  5391.     }
  5392.   },
  5393.  
  5394.   /**
  5395.    * Notify observers of a change to an item that has been requested by the
  5396.    * user. 
  5397.    */
  5398.   _notifyAction: function(id, reason) {
  5399.     gOS.notifyObservers(this.datasource.getItemForID(id), 
  5400.                         EM_ACTION_REQUESTED_TOPIC, reason);
  5401.   },
  5402.   
  5403.   /**
  5404.    * See nsIExtensionManager.idl
  5405.    */
  5406.   update: function(items, itemCount, versionUpdateOnly, listener) {
  5407.     var appID = gApp.ID;
  5408.     var appVersion = gApp.version;
  5409.  
  5410.     if (items.length == 0)
  5411.       items = this.getItemList(nsIUpdateItem.TYPE_ADDON, { });
  5412.  
  5413.     var updater = new ExtensionItemUpdater(appID, appVersion, this);
  5414.     updater.checkForUpdates(items, items.length, versionUpdateOnly, listener);
  5415.   },
  5416.  
  5417.  
  5418.   /**
  5419.    * Checks for changes to the blocklist using the local blocklist file,
  5420.    * application disables / enables items that have been added / removed from
  5421.    * the blocklist, and if there are additions to the blocklist this will
  5422.    * inform the user by displaying a list of the items added.
  5423.    *
  5424.    * XXXrstrong - this method is not terribly useful and was added so we can
  5425.    * trigger this check from the additional timer used by blocklisting.
  5426.    */
  5427.   checkForBlocklistChanges: function() {
  5428.     var ds = this.datasource;
  5429.     var items = this.getItemList(nsIUpdateItem.TYPE_ADDON, { });
  5430.     for (var i = 0; i < items.length; ++i) {
  5431.       var id = items[i].id;
  5432.       ds.updateProperty(id, "blocklisted");
  5433.       if (this._isUsableItem(id))
  5434.         this._appEnableItem(id);
  5435.     }
  5436.  
  5437.     items = ds.getBlocklistedItemList(null, null, nsIUpdateItem.TYPE_ADDON,
  5438.                                       false);
  5439.     for (i = 0; i < items.length; ++i)
  5440.       this._appDisableItem(items[i].id);
  5441.  
  5442.     // show the blocklist notification window if there are new blocklist items.
  5443.     if (items.length > 0)
  5444.       showBlocklistMessage(items, false);
  5445.   },
  5446.  
  5447.   /**
  5448.    * @returns An enumeration of all registered Install Locations.
  5449.    */
  5450.   get installLocations () {
  5451.     return InstallLocations.enumeration;
  5452.   },
  5453.   
  5454.   /**
  5455.    * Gets the Install Location where a visible Item is stored.
  5456.    * @param   id
  5457.    *          The GUID of the item to locate an Install Location for.
  5458.    * @returns The Install Location object where the item is stored.
  5459.    */
  5460.   getInstallLocation: function(id) {
  5461.     var key = this.datasource.visibleItems[id];
  5462.     return key ? InstallLocations.get(this.datasource.visibleItems[id]) : null;
  5463.   },
  5464.   
  5465.   /**
  5466.    * Gets a nsIUpdateItem for the item with the specified id.
  5467.    * @param   id
  5468.    *          The GUID of the item to construct a nsIUpdateItem for.
  5469.    * @returns The nsIUpdateItem representing the item.
  5470.    */
  5471.   getItemForID: function(id) {
  5472.     return this.datasource.getItemForID(id);
  5473.   },
  5474.   
  5475.   /**
  5476.    * Retrieves a list of installed nsIUpdateItems of items that are dependent
  5477.    * on another item.
  5478.    * @param   id
  5479.    *          The ID of the item that other items depend on.
  5480.    * @param   includeDisabled
  5481.    *          Whether to include disabled items in the set returned.
  5482.    * @param   countRef
  5483.    *          The XPCJS reference to the number of items returned.
  5484.    * @returns An array of installed nsIUpdateItems that depend on the item
  5485.    *          specified by the id parameter.
  5486.    */
  5487.   getDependentItemListForID: function(id, includeDisabled, countRef) {
  5488.     return this.datasource.getDependentItemListForID(id, includeDisabled, countRef);
  5489.   },
  5490.  
  5491.   /**
  5492.    * Retrieves a list of nsIUpdateItems of items matching the specified type.
  5493.    * @param   type
  5494.    *          The type of item to return.
  5495.    * @param   countRef
  5496.    *          The XPCJS reference to the number of items returned.
  5497.    * @returns An array of nsIUpdateItems matching the id/type filter.
  5498.    */
  5499.   getItemList: function(type, countRef) {
  5500.     return this.datasource.getItemList(type, countRef);
  5501.   },
  5502.  
  5503.   /**  
  5504.    * See nsIExtensionManager.idl
  5505.    */
  5506.   getIncompatibleItemList: function(id, version, type, includeDisabled, 
  5507.                                     countRef) {
  5508.     var items = this.datasource.getIncompatibleItemList(id, version ? version : undefined,
  5509.                                                         type, includeDisabled);
  5510.     countRef.value = items.length;
  5511.     return items;
  5512.   },
  5513.   
  5514.   /**
  5515.    * Move an Item to the index of another item in its container.
  5516.    * @param   movingID
  5517.    *          The ID of the item to be moved.
  5518.    * @param   destinationID
  5519.    *          The ID of an item to move another item to.
  5520.    */
  5521.   moveToIndexOf: function(movingID, destinationID) {
  5522.     this.datasource.moveToIndexOf(movingID, destinationID);
  5523.   },
  5524.  
  5525.   /**
  5526.    * Sorts addons of the specified type by the specified property starting from
  5527.    * the top of their container. If the addons are already sorted then no action
  5528.    * is performed.
  5529.    * @param   type
  5530.    *          The nsIUpdateItem type of the items to sort.
  5531.    * @param   propertyName
  5532.    *          The RDF property name used for sorting.
  5533.    * @param   isAscending
  5534.    *          true to sort ascending and false to sort descending
  5535.    */
  5536.   sortTypeByProperty: function(type, propertyName, isAscending) {
  5537.     this.datasource.sortTypeByProperty(type, propertyName, isAscending);
  5538.   },
  5539.  
  5540.   /////////////////////////////////////////////////////////////////////////////    
  5541.   // Downloads
  5542.   _transactions: [],
  5543.   _downloadCount: 0,
  5544.   
  5545.   /**
  5546.    * Ask the user if they really want to quit the application, since this will 
  5547.    * cancel one or more Extension/Theme downloads.
  5548.    * @param   subject
  5549.    *          A nsISupportsPRBool which this function sets to false if the user
  5550.    *          wishes to cancel all active downloads and quit the application,
  5551.    *          false otherwise.
  5552.    */
  5553.   _confirmCancelDownloadsOnQuit: function(subject) {
  5554.     if (this._downloadCount > 0) {
  5555.       // The observers will be notified again after this so set the download
  5556.       // count to 0 to prevent this dialog from being displayed again.
  5557.       this._downloadCount = 0;
  5558.       var result;
  5559. //@line 5485 "/cygdrive/K/tinderbuild/src/flock/mozilla/toolkit/mozapps/extensions/src/nsExtensionManager.js.in"
  5560.       result = this._confirmCancelDownloads(this._downloadCount, 
  5561.                                             "quitCancelDownloadsAlertTitle",
  5562.                                             "quitCancelDownloadsAlertMsgMultiple",
  5563.                                             "quitCancelDownloadsAlertMsg",
  5564.                                             "dontQuitButtonWin");
  5565. //@line 5497 "/cygdrive/K/tinderbuild/src/flock/mozilla/toolkit/mozapps/extensions/src/nsExtensionManager.js.in"
  5566.       if (!result)
  5567.         this._cancelDownloads();
  5568.       if (subject instanceof Components.interfaces.nsISupportsPRBool)
  5569.         subject.data = result;
  5570.     }
  5571.   },
  5572.   
  5573.   /**
  5574.    * Ask the user if they really want to go offline, since this will cancel 
  5575.    * one or more Extension/Theme downloads.
  5576.    * @param   subject
  5577.    *          A nsISupportsPRBool which this function sets to false if the user
  5578.    *          wishes to cancel all active downloads and go offline, false
  5579.    *          otherwise.
  5580.    */
  5581.   _confirmCancelDownloadsOnOffline: function(subject) {
  5582.     if (this._downloadCount > 0) {
  5583.       result = this._confirmCancelDownloads(this._downloadCount,
  5584.                                             "offlineCancelDownloadsAlertTitle",
  5585.                                             "offlineCancelDownloadsAlertMsgMultiple",
  5586.                                             "offlineCancelDownloadsAlertMsg",
  5587.                                             "dontGoOfflineButton");
  5588.       if (!result)
  5589.         this._cancelDownloads();
  5590.       if (subject instanceof Components.interfaces.nsISupportsPRBool)
  5591.         subject.data = result;
  5592.     }
  5593.   },
  5594.   
  5595.   /**
  5596.    * Cancels all active downloads and removes them from the applicable UI.
  5597.    */
  5598.   _cancelDownloads: function() {
  5599.     for (var i = 0; i < this._transactions.length; ++i)
  5600.       gOS.notifyObservers(this._transactions[i], "xpinstall-progress", "cancel");
  5601.  
  5602.     this._removeAllDownloads();
  5603.   },
  5604.  
  5605.   /**
  5606.    * Ask the user whether or not they wish to cancel the Extension/Theme
  5607.    * downloads which are currently under way.
  5608.    * @param   count
  5609.    *          The number of active downloads.
  5610.    * @param   title
  5611.    *          The key of the title for the message box to be displayed
  5612.    * @param   cancelMessageMultiple
  5613.    *          The key of the message to be displayed in the message box
  5614.    *          when there are > 1 active downloads.
  5615.    * @param   cancelMessageSingle
  5616.    *          The key of the message to be displayed in the message box
  5617.    *          when there is just one active download.
  5618.    * @param   dontCancelButton
  5619.    *          The key of the label to be displayed on the "Don't Cancel 
  5620.    *          Downloads" button.
  5621.    */
  5622.   _confirmCancelDownloads: function(count, title, cancelMessageMultiple, 
  5623.                                     cancelMessageSingle, dontCancelButton) {
  5624.     var bundle = BundleManager.getBundle(URI_DOWNLOADS_PROPERTIES);
  5625.     var title = bundle.GetStringFromName(title);
  5626.     var message, quitButton;
  5627.     if (count > 1) {
  5628.       message = bundle.formatStringFromName(cancelMessageMultiple, [count], 1);
  5629.       quitButton = bundle.formatStringFromName("cancelDownloadsOKTextMultiple", [count], 1);
  5630.     }
  5631.     else {
  5632.       message = bundle.GetStringFromName(cancelMessageSingle);
  5633.       quitButton = bundle.GetStringFromName("cancelDownloadsOKText");
  5634.     }
  5635.     var dontQuitButton = bundle.GetStringFromName(dontCancelButton);
  5636.     
  5637.     var wm = Components.classes["@mozilla.org/appshell/window-mediator;1"]
  5638.                        .getService(Components.interfaces.nsIWindowMediator);
  5639.     var win = wm.getMostRecentWindow("Extension:Manager");
  5640.     const nsIPromptService = Components.interfaces.nsIPromptService;
  5641.     var ps = Components.classes["@mozilla.org/embedcomp/prompt-service;1"]
  5642.                        .getService(nsIPromptService);
  5643.     var flags = (nsIPromptService.BUTTON_TITLE_IS_STRING * nsIPromptService.BUTTON_POS_0) +
  5644.                 (nsIPromptService.BUTTON_TITLE_IS_STRING * nsIPromptService.BUTTON_POS_1);
  5645.     var rv = ps.confirmEx(win, title, message, flags, quitButton, dontQuitButton, null, null, { });
  5646.     return rv == 1;
  5647.   },
  5648.   
  5649.   /** 
  5650.    * Adds a set of Item Downloads to the Manager and starts the download
  5651.    * operation.
  5652.    * @param   items
  5653.    *          An array of nsIUpdateItems to begin downlading.
  5654.    * @param   itemCount
  5655.    *          The length of |items|
  5656.    * @param   fromChrome
  5657.    *          true when called from chrome
  5658.    *          false when not called from chrome (e.g. web page)
  5659.    */
  5660.   addDownloads: function(items, itemCount, fromChrome) { 
  5661.     var ds = this.datasource;
  5662.     // Add observers only if they aren't already added for an active download
  5663.     if (this._downloadCount == 0) {
  5664.       gOS.addObserver(this, "offline-requested", false);
  5665.       gOS.addObserver(this, "quit-application-requested", false);
  5666.     }
  5667.     this._downloadCount += itemCount;
  5668.     
  5669.     var urls = [];
  5670.     var hashes = [];
  5671.     var txn = new ItemDownloadTransaction(this);
  5672.     for (var i = 0; i < itemCount; ++i) {
  5673.       var currItem = items[i];
  5674.       var txnID = Math.round(Math.random() * 100);
  5675.       txn.addDownload(currItem, txnID);
  5676.       this._transactions.push(txn);
  5677.       urls.push(currItem.xpiURL);
  5678.       hashes.push(currItem.xpiHash ? currItem.xpiHash : null);
  5679.       // if this is an update remove the update metadata to prevent it from
  5680.       // being updated during an install.
  5681.       if (fromChrome) {
  5682.         var id = currItem.id
  5683.         ds.setItemProperty(id, EM_R("availableUpdateURL"), null);
  5684.         ds.setItemProperty(id, EM_R("availableUpdateHash"), null);
  5685.         ds.setItemProperty(id, EM_R("availableUpdateVersion"), null);
  5686.         ds.updateProperty(id, "availableUpdateURL");
  5687.         ds.updateProperty(id, "updateable"); 
  5688.       }
  5689.       var id = fromChrome ? PREFIX_ITEM_URI + currItem.id : currItem.xpiURL;
  5690.       ds.updateDownloadState(id, "waiting");
  5691.     }
  5692.     
  5693.     if (fromChrome) {
  5694.       // Initiate an install from chrome
  5695.       var xpimgr = 
  5696.           Components.classes["@mozilla.org/xpinstall/install-manager;1"].
  5697.           createInstance(Components.interfaces.nsIXPInstallManager);
  5698.       xpimgr.initManagerWithHashes(urls, hashes, urls.length, txn);
  5699.     }
  5700.     else
  5701.       gOS.notifyObservers(txn, "xpinstall-progress", "open");
  5702.   },
  5703.   
  5704.   /**
  5705.    * Removes a download of a URL.
  5706.    * @param   url
  5707.    *          The URL of the item being downloaded to remove.
  5708.    */
  5709.   removeDownload: function(url) {
  5710.     for (var i = 0; i < this._transactions.length; ++i) {
  5711.       if (this._transactions[i].containsURL(url)) {
  5712.         this._transactions[i].removeDownload(url);
  5713.         return;
  5714.       }
  5715.     } 
  5716.   },
  5717.   
  5718.   /**
  5719.    * Remove all downloads from all transactions.
  5720.    */
  5721.   _removeAllDownloads: function() {
  5722.     for (var i = 0; i < this._transactions.length; ++i)
  5723.       this._transactions[i].removeAllDownloads();
  5724.   },
  5725.  
  5726.   /**
  5727.    * Download Operation State has changed from one to another. 
  5728.    * 
  5729.    * The nsIXPIProgressDialog implementation in the download transaction object
  5730.    * forwards notifications through these methods which we then pass on to any
  5731.    * front end objects implementing nsIExtensionDownloadListener that 
  5732.    * are listening. We maintain the master state of download operations HERE, 
  5733.    * not in the front end, because if the user closes the extension or theme 
  5734.    * managers during the downloads we need to maintain state and not terminate
  5735.    * the download/install process. 
  5736.    *
  5737.    * @param   transaction
  5738.    *          The ItemDownloadTransaction object receiving the download 
  5739.    *          notifications from XPInstall.
  5740.    * @param   addon
  5741.    *          An object representing nsIUpdateItem for the addon being updated
  5742.    * @param   state
  5743.    *          The state we are entering
  5744.    * @param   value
  5745.    *          ???
  5746.    */
  5747.   onStateChange: function(transaction, addon, state, value) {
  5748.     for (var i = 0; i < this._updateListeners.length; ++i)
  5749.       this._updateListeners[i].onStateChange(addon, state, value);
  5750.     var ds = this.datasource;
  5751.     var id = addon.id != addon.xpiURL ? PREFIX_ITEM_URI + addon.id : addon.xpiURL;
  5752.     const nsIXPIProgressDialog = Components.interfaces.nsIXPIProgressDialog;
  5753.     switch (state) {
  5754.     case nsIXPIProgressDialog.DOWNLOAD_START:
  5755.       ds.updateDownloadState(id, "downloading");
  5756.       break;
  5757.     case nsIXPIProgressDialog.INSTALL_START:
  5758.       ds.updateDownloadState(id, "finishing");
  5759.       ds.updateDownloadProgress(id, null);
  5760.       break;
  5761.     case nsIXPIProgressDialog.INSTALL_DONE:
  5762.       --this._downloadCount;
  5763.       // From nsInstall.h
  5764.       // SUCCESS        = 0
  5765.       // REBOOT_NEEDED  = 999
  5766.       // USER_CANCELLED = -210
  5767.       if (value != 0 && value != 999 && value != -210 && id != addon.xpiURL) {
  5768.         ds.updateDownloadState(id, "failure");
  5769.         ds.updateDownloadProgress(id, null);
  5770.       }
  5771.       this.removeDownload(addon.xpiURL);
  5772.       break;
  5773.     case nsIXPIProgressDialog.DIALOG_CLOSE:
  5774.       for (var i = 0; i < this._transactions.length; ++i) {
  5775.         if (this._transactions[i].id == transaction.id) {
  5776.           this._transactions.splice(i, 1);
  5777.           delete transaction;
  5778.           // Remove the observers when all transactions have completed.
  5779.           if (this._transactions.length == 0) {
  5780.             gOS.removeObserver(this, "offline-requested");
  5781.             gOS.removeObserver(this, "quit-application-requested");
  5782.           }
  5783.           break;
  5784.         }
  5785.       }
  5786.       break;
  5787.     }
  5788.   },
  5789.   
  5790.   onProgress: function(addon, value, maxValue) {
  5791.     for (var i = 0; i < this._updateListeners.length; ++i)
  5792.       this._updateListeners[i].onProgress(addon, value, maxValue);
  5793.     
  5794.     var id = addon.id != addon.xpiURL ? PREFIX_ITEM_URI + addon.id : addon.xpiURL;
  5795.     var progress = Math.round((value / maxValue) * 100);
  5796.     this.datasource.updateDownloadProgress(id, progress);
  5797.   },
  5798.  
  5799.   _updateListeners: [],
  5800.   addUpdateListener: function(listener) {
  5801.     for (var i = 0; i < this._updateListeners.length; ++i) {
  5802.       if (this._updateListeners[i] == listener)
  5803.         return i;
  5804.     }
  5805.     this._updateListeners.push(listener);
  5806.     return this._updateListeners.length - 1;
  5807.   },
  5808.   
  5809.   removeUpdateListenerAt: function(index) {
  5810.     this._updateListeners.splice(index, 1);
  5811.   },
  5812.  
  5813.   /**
  5814.    * The Extensions RDF Datasource
  5815.    */
  5816.   _ds: null,
  5817.  
  5818.   /** 
  5819.    * Loads the Extensions Datasource. This should not be called unless: 
  5820.    * - a piece of Extensions UI is being shown, or
  5821.    * - on startup and there has been a change to an Install Location
  5822.    * ... it should NOT be called on every startup!
  5823.    */
  5824.   _ensureDS: function() {
  5825.     if (!this._ds) {
  5826.       this._ds = new ExtensionsDataSource(this);
  5827.       if (this._ds)
  5828.         this._ds.loadExtensions();
  5829.     }
  5830.   },
  5831.  
  5832.   /**
  5833.    * See nsIExtensionManager.idl
  5834.    */
  5835.   get datasource() {
  5836.     this._ensureDS();
  5837.     return this._ds.QueryInterface(Components.interfaces.nsIRDFDataSource);
  5838.   },
  5839.   
  5840.   /**
  5841.    * See nsIClassInfo.idl
  5842.    */
  5843.   getInterfaces: function(count) {
  5844.     var interfaces = [Components.interfaces.nsIExtensionManager,
  5845.                       Components.interfaces.nsIXPIProgressDialog,
  5846.                       Components.interfaces.nsIObserver];
  5847.     count.value = interfaces.length;
  5848.     return interfaces;
  5849.   },
  5850.   getHelperForLanguage: function(language) { 
  5851.     return null;
  5852.   },
  5853.   get contractID() {
  5854.     return "@mozilla.org/extensions/manager;1";
  5855.   },
  5856.   get classDescription() {
  5857.     return "Extension Manager";
  5858.   },
  5859.   get classID() {
  5860.     return Components.ID("{8A115FAA-7DCB-4e8f-979B-5F53472F51CF}");
  5861.   },
  5862.   get implementationLanguage() {
  5863.     return Components.interfaces.nsIProgrammingLanguage.JAVASCRIPT;
  5864.   },
  5865.   get flags() {
  5866.     return Components.interfaces.nsIClassInfo.SINGLETON;
  5867.   },
  5868.  
  5869.   /**
  5870.    * See nsISupports.idl
  5871.    */
  5872.   QueryInterface: function(iid) {
  5873.     if (!iid.equals(Components.interfaces.nsIExtensionManager) &&
  5874.         !iid.equals(Components.interfaces.nsIExtensionManager_MOZILLA_1_8_BRANCH) &&
  5875.         !iid.equals(Components.interfaces.nsITimerCallback) &&
  5876.         !iid.equals(Components.interfaces.nsIObserver) &&
  5877.         !iid.equals(Components.interfaces.nsISupports))
  5878.       throw Components.results.NS_ERROR_NO_INTERFACE;
  5879.     return this;
  5880.   }
  5881. };
  5882.  
  5883. /**
  5884.  * This object implements nsIXPIProgressDialog and represents a collection of
  5885.  * XPI/JAR download and install operations. There is one 
  5886.  * ItemDownloadTransaction per back-end XPInstallManager object. We maintain
  5887.  * a collection of separate transaction objects because it's possible to have
  5888.  * multiple separate XPInstall download/install operations going on 
  5889.  * simultaneously, each with its own XPInstallManager instance. For instance
  5890.  * you could start downloading two extensions and then download a theme. Each
  5891.  * of these operations would open the appropriate FE and have to be able to
  5892.  * track each operation independently.
  5893.  * 
  5894.  * @constructor
  5895.  */
  5896. function ItemDownloadTransaction(manager) {
  5897.   this._manager = manager;
  5898.   this._downloads = [];
  5899. }
  5900. ItemDownloadTransaction.prototype = {
  5901.   _manager    : null,
  5902.   _downloads  : [],
  5903.   id          : -1,
  5904.   
  5905.   /**
  5906.    * Add a download to this transaction
  5907.    * @param   addon
  5908.    *          An object implementing nsIUpdateItem for the item to be downloaded
  5909.    * @param   id
  5910.    *          The integer identifier of this transaction
  5911.    */
  5912.   addDownload: function(addon, id) {
  5913.     this._downloads.push({ addon: addon, waiting: true });
  5914.     this._manager.datasource.addDownload(addon);
  5915.     this.id = id;
  5916.   },
  5917.   
  5918.   /**
  5919.    * Removes a download from this transaction
  5920.    * @param   url
  5921.    *          The URL to remove
  5922.    */
  5923.   removeDownload: function(url) {
  5924.     this._manager.datasource.removeDownload(url);
  5925.   },
  5926.   
  5927.   /**
  5928.    * Remove all downloads from this transaction
  5929.    */
  5930.   removeAllDownloads: function() {
  5931.     for (var i = 0; i < this._downloads.length; ++i) {
  5932.       var addon = this._downloads[i].addon;
  5933.       this.removeDownload(addon.xpiURL);
  5934.     }
  5935.   },
  5936.   
  5937.   /**
  5938.    * Determine if this transaction is handling the download of a url.
  5939.    * @param   url
  5940.    *          The URL to look for
  5941.    * @returns true if this transaction is downloading the supplied url.
  5942.    */
  5943.   containsURL: function(url) {
  5944.     for (var i = 0; i < this._downloads.length; ++i) {
  5945.       if (this._downloads[i].addon.xpiURL == url)
  5946.         return true;
  5947.     }
  5948.     return false;
  5949.   },
  5950.  
  5951.   /**
  5952.    * See nsIXPIProgressDialog.idl
  5953.    */
  5954.   onStateChange: function(index, state, value) {
  5955.     this._manager.onStateChange(this, this._downloads[index].addon, 
  5956.                                 state, value);
  5957.   },
  5958.   
  5959.   /**
  5960.    * See nsIXPIProgressDialog.idl
  5961.    */
  5962.   onProgress: function(index, value, maxValue) { 
  5963.     this._manager.onProgress(this._downloads[index].addon, value, maxValue);
  5964.   },
  5965.   
  5966.   /////////////////////////////////////////////////////////////////////////////
  5967.   // nsISupports
  5968.   QueryInterface: function(iid) {
  5969.     if (!iid.equals(Components.interfaces.nsIXPIProgressDialog) &&
  5970.         !iid.equals(Components.interfaces.nsISupports))
  5971.       throw Components.results.NS_ERROR_NO_INTERFACE;
  5972.     return this;
  5973.   }
  5974. };
  5975.  
  5976. /**
  5977.  * A listener object to the update check process that routes notifications to
  5978.  * the right places and keeps the datasource up to date.
  5979.  */
  5980. function AddonUpdateCheckListener(listener, datasource) {
  5981.   this._listener = listener;
  5982.   this._ds = datasource;
  5983. }
  5984. AddonUpdateCheckListener.prototype = {
  5985.   _listener: null,
  5986.   _ds: null,
  5987.   
  5988.   onUpdateStarted: function() {
  5989.     if (this._listener)
  5990.       this._listener.onUpdateStarted();
  5991.     this._ds.onUpdateStarted();
  5992.   },
  5993.   
  5994.   onUpdateEnded: function() {
  5995.     if (this._listener)
  5996.       this._listener.onUpdateEnded();
  5997.     this._ds.onUpdateEnded();
  5998.   },
  5999.   
  6000.   onAddonUpdateStarted: function(addon) {
  6001.     if (this._listener)
  6002.       this._listener.onAddonUpdateStarted(addon);
  6003.     this._ds.onAddonUpdateStarted(addon);
  6004.   },
  6005.   
  6006.   onAddonUpdateEnded: function(addon, status) {
  6007.     if (this._listener)
  6008.       this._listener.onAddonUpdateEnded(addon, status);
  6009.     this._ds.onAddonUpdateEnded(addon, status);
  6010.   }
  6011. };
  6012.  
  6013. ///////////////////////////////////////////////////////////////////////////////
  6014. //
  6015. // ExtensionItemUpdater
  6016. //
  6017. function ExtensionItemUpdater(aTargetAppID, aTargetAppVersion, aEM) 
  6018. {
  6019.   //this._appID = aTargetAppID;
  6020.   //this._appVersion = aTargetAppVersion;
  6021.   this._appID = firefoxAppID;
  6022.   this._appVersion = firefoxVersion;
  6023.   this._emDS = aEM._ds;
  6024.   this._em = aEM;
  6025.  
  6026.   getVersionChecker();
  6027. }
  6028.  
  6029. ExtensionItemUpdater.prototype = {
  6030.   _appID              : "",
  6031.   _appVersion         : "",
  6032.   _emDS               : null,
  6033.   _em                 : null,
  6034.   _versionUpdateOnly  : 0,
  6035.   _items              : [],
  6036.   _listener           : null,
  6037.   _background         : false,
  6038.   
  6039.   /////////////////////////////////////////////////////////////////////////////
  6040.   // ExtensionItemUpdater
  6041.   //
  6042.   // When we check for updates to an item, there are two pieces of information
  6043.   // that are returned - 1) info about the newest available version, if any,
  6044.   // and 2) info about the currently installed version. The latter is provided
  6045.   // primarily to inform the client of changes to the application compatibility 
  6046.   // metadata for the current item. Depending on the situation, either 2 or 
  6047.   // 1&2 may be what is required.
  6048.   //
  6049.   // Callers:
  6050.   //  1 - nsUpdateService.js, user event
  6051.   //      User clicked on the update icon to invoke an update check, 
  6052.   //      user clicked on an Extension/Theme and clicked "Update". In this
  6053.   //      case we want to update compatibility metadata about the installed
  6054.   //      version, and look for newer versions to offer. 
  6055.   //  2 - nsUpdateService.js, background event
  6056.   //      Timer fired, background update is being performed. In this case
  6057.   //      we also want to update compatibility metadata and look for newer
  6058.   //      versions.
  6059.   //  3 - Mismatch
  6060.   //      User upgraded to a newer version of the app, update compatibility
  6061.   //      metadata and look for newer versions.
  6062.   //  4 - Install Phone Home
  6063.   //      User installed an item that was deemed incompatible based only
  6064.   //      on the information provided in the item's install.rdf manifest, 
  6065.   //      we look ONLY for compatibility updates in this case to determine
  6066.   //      whether or not the item can be installed.
  6067.   //  
  6068.   checkForUpdates: function(aItems, aItemCount, aVersionUpdateOnly, 
  6069.                             aListener) {
  6070.     this._listener = new AddonUpdateCheckListener(aListener, this._emDS);
  6071.     if (this._listener)
  6072.       this._listener.onUpdateStarted();
  6073.     this._versionUpdateOnly = aVersionUpdateOnly;
  6074.     this._items = aItems;
  6075.     this._responseCount = aItemCount;
  6076.     
  6077.     // This is the number of extensions/themes/etc that we found updates for.
  6078.     this._updateCount = 0;
  6079.  
  6080.     for (var i = 0; i < aItemCount; ++i) {
  6081.       var e = this._items[i];
  6082.       if (this._listener)
  6083.         this._listener.onAddonUpdateStarted(e);
  6084.       (new RDFItemUpdater(this)).checkForUpdates(e, aVersionUpdateOnly);
  6085.     }
  6086.   },
  6087.   
  6088.   /////////////////////////////////////////////////////////////////////////////
  6089.   // ExtensionItemUpdater
  6090.   _applyVersionUpdates: function(aLocalItem, aRemoteItem) {
  6091.     var targetAppInfo = this._emDS.getTargetApplicationInfo(aLocalItem.id, this._emDS);
  6092.     // If targetAppInfo is null this is for a new install. If the local item's
  6093.     // maxVersion does not equal the targetAppInfo maxVersion then this is for
  6094.     // an upgrade. In both of these cases return true if the remotely specified
  6095.     // maxVersion is greater than the local item's maxVersion.
  6096.     if (!targetAppInfo ||
  6097.         gVersionChecker.compare(aLocalItem.maxAppVersion, targetAppInfo.maxVersion) != 0) {
  6098.       if (gVersionChecker.compare(aLocalItem.maxAppVersion, aRemoteItem.maxAppVersion) < 0)
  6099.         return true;
  6100.       else
  6101.         return false;
  6102.     }
  6103.  
  6104.     if (gVersionChecker.compare(targetAppInfo.maxVersion, aRemoteItem.maxAppVersion) < 0) {
  6105.       // Remotely specified maxVersion is newer than the maxVersion 
  6106.       // for the installed Extension. Apply that change to the datasources.
  6107.       this._emDS.updateTargetAppInfo(aLocalItem.id, aRemoteItem.minAppVersion,
  6108.                                      aRemoteItem.maxAppVersion);
  6109.  
  6110.       // If we got here through |checkForMismatches|, this extension has
  6111.       // already been disabled, re-enable it.
  6112.       var op = StartupCache.entries[aLocalItem.installLocationKey][aLocalItem.id].op;
  6113.       if (op == OP_NEEDS_DISABLE ||
  6114.           this._emDS.getItemProperty(aLocalItem.id, "appDisabled") == "true")
  6115.         this._em._appEnableItem(aLocalItem.id);
  6116.       return true;
  6117.     }
  6118.     else if (this._versionUpdateOnly == 2)
  6119.       this._emDS.updateTargetAppInfo(aLocalItem.id, aRemoteItem.minAppVersion,
  6120.                                      aRemoteItem.maxAppVersion);
  6121.     return false;
  6122.   },
  6123.   
  6124.   _isValidUpdate: function(aLocalItem, aRemoteItem) {
  6125.     var appExtensionsVersion = firefoxVersion;
  6126.  
  6127.     // Check if the update will only run on a newer version of Firefox. 
  6128.     if (aRemoteItem.minAppVersion && 
  6129.         gVersionChecker.compare(appExtensionsVersion, aRemoteItem.minAppVersion) < 0) 
  6130.       return false;
  6131.  
  6132.     // Check if the update will only run on an older version of Firefox. 
  6133.     if (aRemoteItem.maxAppVersion && 
  6134.         gVersionChecker.compare(appExtensionsVersion, aRemoteItem.maxAppVersion) > 0) 
  6135.       return false;
  6136.  
  6137.     if (this._emDS.isBlocklisted(aRemoteItem.id, aRemoteItem.version,
  6138.                                  undefined, undefined))
  6139.       return false;
  6140.     
  6141.     return true;
  6142.   },
  6143.   
  6144.   checkForDone: function(item, status) {
  6145.     if (this._background &&
  6146.         status == nsIAddonUpdateCheckListener.STATUS_UPDATE) {
  6147.       var lastupdate = this._emDS.getItemProperty(item.id, "availableUpdateVersion");
  6148.       if (lastupdate != item.version)
  6149.         gPref.setBoolPref(PREF_UPDATE_NOTIFYUSER, true);
  6150.     }
  6151.     if (this._listener) {
  6152.       try {
  6153.         this._listener.onAddonUpdateEnded(item, status);
  6154.       }
  6155.       catch (e) {
  6156.         LOG("ExtensionItemUpdater:checkForDone: Failure in listener's onAddonUpdateEnded: " + e);
  6157.       }
  6158.     }
  6159.     if (--this._responseCount == 0 && this._listener) {
  6160.       try {
  6161.         this._listener.onUpdateEnded();
  6162.       }
  6163.       catch (e) {
  6164.         LOG("ExtensionItemUpdater:checkForDone: Failure in listener's onUpdateEnded: " + e);
  6165.       }
  6166.     }
  6167.   },
  6168. };
  6169.  
  6170. function RDFItemUpdater(aUpdater) {
  6171.   this._updater = aUpdater;
  6172. }
  6173.  
  6174. RDFItemUpdater.prototype = {
  6175.   _updater            : null,
  6176.   _versionUpdateOnly  : 0,
  6177.   _item               : null,
  6178.   
  6179.   checkForUpdates: function(aItem, aVersionUpdateOnly) {
  6180.     // A preference setting can disable updating for this item
  6181.     try {
  6182.       if (!gPref.getBoolPref(PREF_EM_ITEM_UPDATE_ENABLED.replace(/%UUID%/, aItem.id))) {
  6183.         var status = nsIAddonUpdateCheckListener.STATUS_DISABLED;
  6184.         this._updater.checkForDone(aItem, status);
  6185.         return;
  6186.       }
  6187.     }
  6188.     catch (e) { }
  6189.  
  6190.     // Items managed by the app are not checked for updates.
  6191.     var emDS = this._updater._emDS;
  6192.     if (emDS.getItemProperty(aItem.id, "appManaged") == "true") {
  6193.       var status = nsIAddonUpdateCheckListener.STATUS_APP_MANAGED;
  6194.       this._updater.checkForDone(aItem, status);
  6195.       return;
  6196.     }
  6197.  
  6198.     // Items that have a pending install, uninstall, or upgrade are not checked
  6199.     // for updates.
  6200.     var opType = emDS.getItemProperty(aItem.id, "opType");
  6201.     if (opType == OP_NEEDS_INSTALL || opType == OP_NEEDS_UNINSTALL ||
  6202.         opType == OP_NEEDS_UPGRADE) {
  6203.       var status = nsIAddonUpdateCheckListener.STATUS_PENDING_OP;
  6204.       this._updater.checkForDone(aItem, status);
  6205.       return;
  6206.     }
  6207.  
  6208.     var installLocation = InstallLocations.get(emDS.getInstallLocationKey(aItem.id));
  6209.     // Don't check items for updates that are installed in a location that is
  6210.     // not managed by the app.
  6211.     if (installLocation && (installLocation.name == "winreg-app-global" ||
  6212.         installLocation.name == "winreg-app-user")) {
  6213.       var status = nsIAddonUpdateCheckListener.STATUS_NOT_MANAGED;
  6214.       this._updater.checkForDone(aItem, status);
  6215.       return;
  6216.     }
  6217.  
  6218.     // Don't check items for updates if the location can't be written to except
  6219.     // when performing a version only update.
  6220.     if (!aVersionUpdateOnly && (!installLocation || !installLocation.canAccess)) {
  6221.       var status = nsIAddonUpdateCheckListener.STATUS_READ_ONLY;
  6222.       this._updater.checkForDone(aItem, status);
  6223.       return;
  6224.     }
  6225.  
  6226.     this._versionUpdateOnly = aVersionUpdateOnly;
  6227.     this._item = aItem;
  6228.   
  6229.     var itemStatus;
  6230.     if (emDS.getItemProperty(aItem.id, "userDisabled") == "true" ||
  6231.         emDS.getItemProperty(aItem.id, "userDisabled") == OP_NEEDS_ENABLE)
  6232.       itemStatus = "userDisabled";
  6233.     else
  6234.       itemStatus = "userEnabled";
  6235.     
  6236.     if (emDS.getItemProperty(aItem.id, "compatible") == "false")
  6237.       itemStatus += ",incompatible";
  6238.     if (emDS.getItemProperty(aItem.id, "blocklisted") == "true")
  6239.       itemStatus += ",blocklisted";
  6240.     if (emDS.getItemProperty(aItem.id, "satisfiesDependencies") == "false")
  6241.       itemStatus += ",needsDependencies";
  6242.  
  6243.     // Look for a custom update URI: 1) supplied by a pref, 2) supplied by the
  6244.     // install manifest, 3) the default configuration
  6245.     try {
  6246.       var dsURI = gPref.getComplexValue(PREF_EM_ITEM_UPDATE_URL.replace(/%UUID%/, aItem.id),
  6247.                                         Components.interfaces.nsIPrefLocalizedString).data;
  6248.     }
  6249.     catch (e) { }
  6250.     if (!dsURI)
  6251.       dsURI = aItem.updateRDF;
  6252.     if (!dsURI) {
  6253.       dsURI = gPref.getComplexValue(PREF_UPDATE_DEFAULT_URL,
  6254.                                     Components.interfaces.nsIPrefLocalizedString).data;
  6255.     }
  6256.     dsURI = dsURI.replace(/%ITEM_ID%/g, aItem.id);
  6257.     dsURI = dsURI.replace(/%ITEM_VERSION%/g, aItem.version);
  6258.     dsURI = dsURI.replace(/%ITEM_MAXAPPVERSION%/g, aItem.maxAppVersion);
  6259.     dsURI = dsURI.replace(/%ITEM_STATUS%/g, itemStatus);
  6260.     dsURI = dsURI.replace(/%APP_ID%/g, this._updater._appID);
  6261.     dsURI = dsURI.replace(/%APP_VERSION%/g, this._updater._appVersion);
  6262.     dsURI = dsURI.replace(/%REQ_VERSION%/g, 1);
  6263.     dsURI = dsURI.replace(/%APP_OS%/g, gOSTarget);
  6264.     dsURI = dsURI.replace(/%APP_ABI%/g, gXPCOMABI);
  6265.     
  6266.     // escape() does not properly encode + symbols in any embedded FVF strings.
  6267.     dsURI = dsURI.replace(/\+/g, "%2B");
  6268.  
  6269.     // Verify that the URI provided is valid
  6270.     try {
  6271.       var uri = newURI(dsURI);
  6272.     }
  6273.     catch (e) {
  6274.       LOG("RDFItemUpdater:checkForUpdates: There was an error loading the \r\n" + 
  6275.           " update datasource for: " + dsURI + ", item = " + aItem.id + ", error: " + e);
  6276.       this._updater.checkForDone(aItem, 
  6277.                                  nsIAddonUpdateCheckListener.STATUS_FAILURE);
  6278.       return;
  6279.     }
  6280.  
  6281.     LOG("RDFItemUpdater:checkForUpdates sending a request to server for: " + 
  6282.         uri.spec + ", item = " + aItem.objectSource);        
  6283.  
  6284.     var request = Components.classes["@mozilla.org/xmlextras/xmlhttprequest;1"]
  6285.                             .createInstance(Components.interfaces.nsIXMLHttpRequest);
  6286.     request.open("GET", uri.spec, true);
  6287.     request.channel.notificationCallbacks = new BadCertHandler();
  6288.     request.overrideMimeType("text/xml");
  6289.     request.channel.loadFlags |= Components.interfaces.nsIRequest.LOAD_BYPASS_CACHE;
  6290.  
  6291.     var self = this;
  6292.     request.onerror     = function(event) { self.onXMLError(event, aItem);    };
  6293.     request.onload      = function(event) { self.onXMLLoad(event, aItem);     };
  6294.     request.send(null);
  6295.   },
  6296.  
  6297.   onXMLLoad: function(aEvent, aItem) {
  6298.     var request = aEvent.target;
  6299.     try {
  6300.       checkCert(request.channel);
  6301.     }
  6302.     catch (e) {
  6303.       // This may be overly restrictive in two cases: corporate installations
  6304.       // with a corporate update server using an in-house CA cert (installed
  6305.       // but not "built-in") and lone developers hosting their updates on a
  6306.       // site with a self-signed cert (permanently accepted, otherwise the
  6307.       // BadCertHandler would prevent getting this far). Update checks will
  6308.       // fail in both these scenarios.
  6309.       // How else can we protect the vast majority of updates served from AMO
  6310.       // from the spoofing attack described in bug 340198 while allowing those
  6311.       // other cases? A "hackme" pref? Domain-control certs are cheap, getting
  6312.       // one should not be a barrier in either case.
  6313.       LOG("RDFItemUpdater::onXMLLoad: " + e);
  6314.       this._updater.checkForDone(aItem,
  6315.                                  nsIAddonUpdateCheckListener.STATUS_FAILURE);
  6316.       return;
  6317.     }
  6318.     var responseXML = request.responseXML;
  6319.  
  6320.     // If the item does not have an update RDF and returns an error it is not
  6321.     // treated as a failure since all items without an updateURL are checked
  6322.     // for updates on AMO even if they are not hosted there.
  6323.     if (!responseXML || responseXML.documentElement.namespaceURI == XMLURI_PARSE_ERROR ||
  6324.         (request.status != 200 && request.status != 0)) {
  6325.       this._updater.checkForDone(aItem, (aItem.updateRDF ? nsIAddonUpdateCheckListener.STATUS_FAILURE :
  6326.                                                            nsIAddonUpdateCheckListener.STATUS_NONE));
  6327.       return;
  6328.     }
  6329.  
  6330.     var rdfParser = Components.classes["@mozilla.org/rdf/xml-parser;1"]
  6331.                               .createInstance(Components.interfaces.nsIRDFXMLParser)
  6332.     var ds = Components.classes["@mozilla.org/rdf/datasource;1?name=in-memory-datasource"]
  6333.                        .createInstance(Components.interfaces.nsIRDFDataSource);
  6334.     rdfParser.parseString(ds, request.channel.URI, request.responseText);
  6335.  
  6336.     this.onDatasourceLoaded(ds, aItem);
  6337.   },
  6338.  
  6339.   onXMLError: function(aEvent, aItem) {
  6340.     try {
  6341.       var request = aEvent.target;
  6342.       // the following may throw (e.g. a local file or timeout)
  6343.       var status = request.status;
  6344.     }
  6345.     catch (e) {
  6346.       request = aEvent.target.channel.QueryInterface(Components.interfaces.nsIRequest);
  6347.       status = request.status;
  6348.     }
  6349.     // this can fail when a network connection is not present.
  6350.     try {
  6351.       var statusText = request.statusText;
  6352.     }
  6353.     catch (e) {
  6354.       status = 0;
  6355.     }
  6356.     // When status is 0 we don't have a valid channel.
  6357.     if (status == 0)
  6358.       statusText = "nsIXMLHttpRequest channel unavailable";
  6359.  
  6360.     LOG("RDFItemUpdater:onError: There was an error loading the \r\n" + 
  6361.         "the update datasource for item " + aItem.id + ", error: " + statusText);
  6362.     this._updater.checkForDone(aItem, 
  6363.                                nsIAddonUpdateCheckListener.STATUS_FAILURE);
  6364.   },
  6365.  
  6366.   onDatasourceLoaded: function(aDatasource, aLocalItem) {
  6367.     ///////////////////////////////////////////////////////////////////////////    
  6368.     // The extension update RDF file looks something like this:
  6369.     //
  6370.     //  <RDF:Description about="urn:mozilla:extension:{GUID}">
  6371.     //    <em:updates>
  6372.     //      <RDF:Seq>
  6373.     //        <RDF:li resource="urn:mozilla:extension:{GUID}:4.9"/>
  6374.     //        <RDF:li resource="urn:mozilla:extension:{GUID}:5.0"/>
  6375.     //      </RDF:Seq>
  6376.     //    </em:updates>
  6377.     //    <!-- the version of the extension being offered -->
  6378.     //    <em:version>5.0</em:version>
  6379.     //    <em:updateLink>http://www.mysite.com/myext-50.xpi</em:updateLink>
  6380.     //  </RDF:Description>
  6381.     //
  6382.     //  <RDF:Description about="urn:mozilla:extension:{GUID}:4.9">
  6383.     //    <em:version>4.9</em:version>
  6384.     //    <em:targetApplication>
  6385.     //      <RDF:Description>
  6386.     //        <em:id>{ec8030f7-c20a-464f-9b0e-13a3a9e97384}</em:id>
  6387.     //        <em:minVersion>0.9</em:minVersion>
  6388.     //        <em:maxVersion>1.0</em:maxVersion>
  6389.     //        <em:updateLink>http://www.mysite.com/myext-49.xpi</em:updateLink>
  6390.     //      </RDF:Description>
  6391.     //    </em:targetApplication>
  6392.     //  </RDF:Description>  
  6393.     //
  6394.     // If we get here because the following happened:
  6395.     // 1) User was using Firefox 0.9 with ExtensionX 0.5 (minVersion 0.8, 
  6396.     //    maxVersion 0.9 for Firefox)
  6397.     // 2) User upgraded Firefox to 1.0
  6398.     // 3) |checkForMismatches| deems ExtensionX 0.5 incompatible with this
  6399.     //    new version of Firefox on the basis of its maxVersion
  6400.     // 4) ** We reach this point **
  6401.     //
  6402.     // If the version of ExtensionX (0.5) matches that provided by the 
  6403.     // server, then this is a cue that the author updated the rdf file
  6404.     // or central repository to say "0.5 is ALSO compatible with Firefox 1.0,
  6405.     // no changes are necessary." In this event, the local metadata for
  6406.     // installed ExtensionX (0.5) is freshened with the new maxVersion, 
  6407.     // and we advance to the next item WITHOUT any download/install 
  6408.     // updates.
  6409.     if (!aDatasource.GetAllResources().hasMoreElements()) {
  6410.       LOG("RDFItemUpdater:onDatasourceLoaded: Datasource empty.\r\n" + 
  6411.           "If you are an Extension developer and were expecting there to be\r\n" + 
  6412.           "updates, this could mean any number of things, since the RDF system\r\n" + 
  6413.           "doesn't give up much in the way of information when the load fails.\r\n" + 
  6414.           "\r\nTry checking that: \r\n" + 
  6415.           " 1. Your remote RDF file exists at the location.\r\n" + 
  6416.           " 2. Your RDF file is valid XML (starts with <?xml version=\"1.0?\">\r\n" + 
  6417.           "    and loads in Flock displaying pretty printed like other XML documents\r\n" + 
  6418.           " 3. Your server is sending the data in the correct MIME\r\n" + 
  6419.           "    type (text/xml)");
  6420.     }      
  6421.     
  6422.   
  6423.     // Parse the response RDF
  6424.     function UpdateData() {}; 
  6425.     UpdateData.prototype = { version: "0.0", updateLink: null, updateHash: null,
  6426.                              minVersion: "0.0", maxVersion: "0.0" };
  6427.     
  6428.     var versionUpdate = new UpdateData();
  6429.     var newestUpdate  = new UpdateData();
  6430.  
  6431.     var newerItem, sameItem;
  6432.     
  6433.     // Firefox 1.0PR+ update.rdf format
  6434.     if (!this._versionUpdateOnly) {
  6435.       // Look for newer versions of this item, we only do this in "normal" 
  6436.       // mode... see comment by ExtensionItemUpdater_checkForUpdates 
  6437.       // about how we do this in all cases but Install Phone Home - which 
  6438.       // only needs to do a version check.
  6439.       this._parseV20UpdateInfo(aDatasource, aLocalItem, newestUpdate, false);
  6440.  
  6441.       newerItem = makeItem(aLocalItem.id, 
  6442.                            newestUpdate.version, 
  6443.                            aLocalItem.installLocationKey,
  6444.                            newestUpdate.minVersion, 
  6445.                            newestUpdate.maxVersion, 
  6446.                            aLocalItem.name, 
  6447.                            newestUpdate.updateLink,
  6448.                            newestUpdate.updateHash,
  6449.                            "", /* Icon URL */
  6450.                            "", /* RDF Update URL */
  6451.                            aLocalItem.type);
  6452.       if (this._updater._isValidUpdate(aLocalItem, newerItem))
  6453.         ++this._updater._updateCount;
  6454.       else
  6455.         newerItem = null;
  6456.     }
  6457.     
  6458.     // Now look for updated version compatibility metadata for the currently
  6459.     // installed version...
  6460.     this._parseV20UpdateInfo(aDatasource, aLocalItem, versionUpdate, true);
  6461.  
  6462.     var result = gVersionChecker.compare(versionUpdate.version, 
  6463.                                           aLocalItem.version);
  6464.     if (result == 0) {
  6465.       // Local version exactly matches the "Version Update" remote version, 
  6466.       // Apply changes into local datasource.
  6467.       sameItem = makeItem(aLocalItem.id, 
  6468.                           versionUpdate.version, 
  6469.                           aLocalItem.installLocationKey,
  6470.                           versionUpdate.minVersion, 
  6471.                           versionUpdate.maxVersion, 
  6472.                           aLocalItem.name,
  6473.                           "", /* XPI Update URL */
  6474.                           "", /* XPI Update Hash */
  6475.                           "", /* Icon URL */
  6476.                           "", /* RDF Update URL */
  6477.                           aLocalItem.type);
  6478.       if (this._updater._isValidUpdate(aLocalItem, sameItem)) {
  6479.         // Install-time updates are not written to the DS because there is no
  6480.         // entry yet, EM just uses the notifications to ascertain (by hand)
  6481.         // whether or not there is a remote maxVersion tweak that makes the 
  6482.         // item being installed compatible.
  6483.         if (!this._updater._applyVersionUpdates(aLocalItem, sameItem))
  6484.           sameItem = null;
  6485.       }
  6486.       else 
  6487.         sameItem = null;
  6488.     }
  6489.     
  6490.     if (newerItem) {
  6491.       LOG("RDFItemUpdater:onDatasourceLoaded: Found a newer version of this item:\r\n" + 
  6492.           newerItem.objectSource);
  6493.     }
  6494.     if (sameItem) {
  6495.       LOG("RDFItemUpdater:onDatasourceLoaded: Found info about the installed\r\n" + 
  6496.           "version of this item: " + sameItem.objectSource);
  6497.     }
  6498.     var item = null, status = nsIAddonUpdateCheckListener.STATUS_NONE;
  6499.     if (!this._versionUpdateOnly && newerItem) {
  6500.       item = newerItem;
  6501.       status = nsIAddonUpdateCheckListener.STATUS_UPDATE;
  6502.     }
  6503.     else if (sameItem) {
  6504.       item = sameItem;
  6505.       status = nsIAddonUpdateCheckListener.STATUS_VERSIONINFO;
  6506.     }
  6507.     else {
  6508.       item = aLocalItem;
  6509.       status = nsIAddonUpdateCheckListener.STATUS_NO_UPDATE;
  6510.     }
  6511.     // Only one call of this._updater.checkForDone is needed for RDF 
  6512.     // responses, since there is only one response per item.
  6513.     this._updater.checkForDone(item, status);
  6514.   },
  6515.  
  6516.   // Get a compulsory property from a resource. Reports an error if the 
  6517.   // property was not present. 
  6518.   _getPropertyFromResource: function(aDataSource, aSourceResource, aProperty, aLocalItem) {
  6519.     var rv;
  6520.     try {
  6521.       var property = gRDF.GetResource(EM_NS(aProperty));
  6522.       rv = stringData(aDataSource.GetTarget(aSourceResource, property, true));
  6523.       if (rv === undefined)
  6524.         throw Components.results.NS_ERROR_FAILURE;
  6525.     }
  6526.     catch (e) {
  6527.       // XXXben show console message "aProperty" not found on aSourceResource. 
  6528.       return null;
  6529.     }
  6530.     return rv;
  6531.   },
  6532.   
  6533.   // Parses Firefox 1.0RC1+ update.rdf format
  6534.   _parseV20UpdateInfo: function(aDataSource, aLocalItem, aUpdateData, aVersionUpdatesOnly) {
  6535.     var extensionRes  = gRDF.GetResource(getItemPrefix(aLocalItem.type) + aLocalItem.id);
  6536.  
  6537.     var updatesArc = gRDF.GetResource(EM_NS("updates"));
  6538.     var updates = aDataSource.GetTarget(extensionRes, updatesArc, true);
  6539.     
  6540.     try {
  6541.       updates = updates.QueryInterface(Components.interfaces.nsIRDFResource);
  6542.     }
  6543.     catch (e) { 
  6544.       LOG("RDFItemUpdater:_parseV20UpdateInfo: No updates were found for:\r\n" + 
  6545.           aLocalItem.id + "\r\n" + 
  6546.           "If you are an Extension developer and were expecting there to be\r\n" + 
  6547.           "updates, this could mean any number of things, since the RDF system\r\n" + 
  6548.           "doesn't give up much in the way of information when the load fails.\r\n" + 
  6549.           "\r\nTry checking that: \r\n" + 
  6550.           " 1. Your RDF File is correct - e.g. check that there is a top level\r\n" + 
  6551.           "    RDF Resource with a URI urn:mozilla:extension:{GUID}, and that\r\n" + 
  6552.           "    the <em:updates> listed all have matching GUIDs.");
  6553.       return; 
  6554.     }
  6555.     
  6556.     var cu = Components.classes["@mozilla.org/rdf/container-utils;1"]
  6557.                        .getService(Components.interfaces.nsIRDFContainerUtils);
  6558.     if (cu.IsContainer(aDataSource, updates)) {
  6559.       var ctr = getContainer(aDataSource, updates);
  6560.  
  6561.       // In "all update types" mode, we look for newer versions, starting with the 
  6562.       // current installed version.
  6563.       if (!aVersionUpdatesOnly) 
  6564.         aUpdateData.version = aLocalItem.version;
  6565.  
  6566.       var versions = ctr.GetElements();
  6567.       while (versions.hasMoreElements()) {
  6568.         // There are two different methodologies for collecting version 
  6569.         // information depending on whether or not we've bene invoked in 
  6570.         // "version updates only" mode or "version+newest" mode. 
  6571.         var version = versions.getNext().QueryInterface(Components.interfaces.nsIRDFResource);
  6572.         this._parseV20Update(aDataSource, version, aLocalItem, aUpdateData, aVersionUpdatesOnly);
  6573.         if (aVersionUpdatesOnly && aUpdateData.updateLink)
  6574.           break;
  6575.       }
  6576.     }
  6577.   },
  6578.   
  6579.   _parseV20Update: function(aDataSource, aUpdateResource, aLocalItem, aUpdateData, aVersionUpdatesOnly) {
  6580.     var version = this._getPropertyFromResource(aDataSource, aUpdateResource, 
  6581.                                                 "version", aLocalItem);
  6582.     var taArc = gRDF.GetResource(EM_NS("targetApplication"));
  6583.     var targetApps = aDataSource.GetTargets(aUpdateResource, taArc, true);
  6584.     while (targetApps.hasMoreElements()) {
  6585.       var targetApp = targetApps.getNext().QueryInterface(Components.interfaces.nsIRDFResource);
  6586.       var id = this._getPropertyFromResource(aDataSource, targetApp, "id", aLocalItem);
  6587.       if (id != this._updater._appID)
  6588.         continue;
  6589.       
  6590.       var result = gVersionChecker.compare(version, aLocalItem.version);
  6591.       if (aVersionUpdatesOnly ? result == 0 : result > 0) {
  6592.         aUpdateData.version = version;
  6593.         aUpdateData.updateLink = this._getPropertyFromResource(aDataSource, targetApp, "updateLink", aLocalItem);
  6594.         aUpdateData.updateHash = this._getPropertyFromResource(aDataSource, targetApp, "updateHash", aLocalItem);
  6595.         aUpdateData.minVersion = this._getPropertyFromResource(aDataSource, targetApp, "minVersion", aLocalItem);
  6596.         aUpdateData.maxVersion = this._getPropertyFromResource(aDataSource, targetApp, "maxVersion", aLocalItem);
  6597.       }
  6598.     }
  6599.   }
  6600. };
  6601.  
  6602. /**
  6603.  * A Datasource that holds Extensions. 
  6604.  * - Implements nsIRDFDataSource to drive UI
  6605.  * - Uses a RDF/XML datasource for storage (this is undesirable)
  6606.  * 
  6607.  * @constructor
  6608.  */
  6609. function ExtensionsDataSource(em) {
  6610.   this._em = em;
  6611.   
  6612.   this._itemRoot = gRDF.GetResource(RDFURI_ITEM_ROOT);
  6613.   this._defaultTheme = gRDF.GetResource(RDFURI_DEFAULT_THEME);
  6614.   gRDF.RegisterDataSource(this, true);
  6615. }
  6616. ExtensionsDataSource.prototype = {
  6617.   _inner    : null,
  6618.   _em       : null,
  6619.   _itemRoot     : null,
  6620.   _defaultTheme : null,
  6621.   
  6622.   /**
  6623.    * Determines if an item's dependencies are satisfied. An item's dependencies
  6624.    * are satisifed when all items specified in the item's em:requires arc are
  6625.    * installed, enabled, and the version is compatible based on the em:requires
  6626.    * minVersion and maxVersion.
  6627.    * @param   id
  6628.    *          The ID of the item
  6629.    * @returns true if the item's dependencies are satisfied.
  6630.    *          false if the item's dependencies are not satisfied.
  6631.    */
  6632.   satisfiesDependencies: function(id) {
  6633.     var ds = this._inner;
  6634.     var itemResource = getResourceForID(id);
  6635.     var targets = ds.GetTargets(itemResource, EM_R("requires"), true);
  6636.     if (!targets.hasMoreElements())
  6637.       return true;
  6638.  
  6639.     getVersionChecker();
  6640.     var idRes = EM_R("id");
  6641.     var minVersionRes = EM_R("minVersion");
  6642.     var maxVersionRes = EM_R("maxVersion");
  6643.     while (targets.hasMoreElements()) {
  6644.       var target = targets.getNext().QueryInterface(Components.interfaces.nsIRDFResource);
  6645.       var dependencyID = stringData(ds.GetTarget(target, idRes, true));
  6646.       var version = null;
  6647.       version = this.getItemProperty(dependencyID, "version");
  6648.       if (version) {
  6649.         var opType = this.getItemProperty(dependencyID, "opType");
  6650.         if (opType ==  OP_NEEDS_DISABLE || opType == OP_NEEDS_UNINSTALL)
  6651.           return false;
  6652.  
  6653.         if (this.getItemProperty(dependencyID, "userDisabled") == "true" ||
  6654.             this.getItemProperty(dependencyID, "appDisabled") == "true" ||
  6655.             this.getItemProperty(dependencyID, "userDisabled") == OP_NEEDS_DISABLE ||
  6656.             this.getItemProperty(dependencyID, "appDisabled") == OP_NEEDS_DISABLE)
  6657.           return false;
  6658.  
  6659.         var minVersion = stringData(ds.GetTarget(target, minVersionRes, true));
  6660.         var maxVersion = stringData(ds.GetTarget(target, maxVersionRes, true));
  6661.         var compatible = (gVersionChecker.compare(version, minVersion) >= 0 &&
  6662.                           gVersionChecker.compare(version, maxVersion) <= 0);
  6663.         if (!compatible)
  6664.           return false;
  6665.       }
  6666.       else {
  6667.         return false;
  6668.       }
  6669.     }
  6670.  
  6671.     return true;
  6672.   },
  6673.  
  6674.   /**
  6675.    * Determine if an item is compatible
  6676.    * @param   datasource
  6677.    *          The datasource to inspect for compatibility - can be the main
  6678.    *          datasource or an Install Manifest.
  6679.    * @param   source
  6680.    *          The RDF Resource of the item to inspect for compatibility.
  6681.    * @param   version
  6682.    *          The version of the application we are checking for compatibility
  6683.    *          against. If this parameter is undefined, the version of the running
  6684.    *          application is used.
  6685.    * @returns true if the item is compatible with this version of the 
  6686.    *          application, false, otherwise.
  6687.    */
  6688.   isCompatible: function (datasource, source, version) {
  6689.     // The Default Theme is always compatible. 
  6690.     if (source.EqualsNode(this._defaultTheme))
  6691.       return true;
  6692.  
  6693.     var foundFlock = false;
  6694.     var foundCompatibleFlock = false;
  6695.     var foundCompatibleFirefox = false;
  6696.  
  6697.     if (version === undefined) {
  6698.       version = gApp.version;
  6699.     }              
  6700.     var appID = gApp.ID;
  6701.     
  6702.     var extensionName = stringData(datasource.GetTarget(source, EM_R("name"), true));
  6703.  
  6704.     var targets = datasource.GetTargets(source, EM_R("targetApplication"), true);
  6705.     var idRes = EM_R("id");
  6706.     var minVersionRes = EM_R("minVersion");
  6707.     var maxVersionRes = EM_R("maxVersion");
  6708.     var versionChecker = getVersionChecker();
  6709.     while (targets.hasMoreElements()) {
  6710.       var targetApp = targets.getNext().QueryInterface(Components.interfaces.nsIRDFResource);
  6711.       var id          = stringData(datasource.GetTarget(targetApp, idRes, true));
  6712.       var minVersion  = stringData(datasource.GetTarget(targetApp, minVersionRes, true));
  6713.       var maxVersion  = stringData(datasource.GetTarget(targetApp, maxVersionRes, true));
  6714.  
  6715.       // Check our current appID first (Should be Flock).
  6716.       if (id == appID) {
  6717.         foundFlock = true;
  6718.         if (foundCompatibleFlock == false) {
  6719.           maxVersion = fixupFlockMaxVersion(maxVersion);
  6720.           foundCompatibleFlock = ((versionChecker.compare(version, minVersion) >= 0) &&
  6721.                                   (versionChecker.compare(version, maxVersion) <= 0));
  6722.         }
  6723.       }
  6724.       else if (id == firefoxAppID && foundCompatibleFirefox == false) {
  6725.         foundCompatibleFirefox = ((versionChecker.compare(firefoxVersion, minVersion) >= 0) &&
  6726.                                   (versionChecker.compare(firefoxVersion, maxVersion) <= 0));
  6727.       }
  6728.     }
  6729.  
  6730.     if (foundCompatibleFlock) {
  6731.       return true;
  6732.     }
  6733.     else if (!foundFlock && foundCompatibleFirefox) {
  6734.       return true;
  6735.     }  
  6736.     
  6737.     return false;
  6738.   },
  6739.  
  6740.   /**
  6741.    * Determine if an item is blocklisted
  6742.    * @param   id
  6743.    *          The id of the item to check.
  6744.    * @param   extVersion
  6745.    *          The item's version.
  6746.    * @param   appVersion
  6747.    *          The version of the application we are checking in the blocklist.
  6748.    *          If this parameter is undefined, the version of the running
  6749.    *          application is used.
  6750.    * @param   toolkitVersion
  6751.    *          The version of the toolkit we are checking in the blocklist.
  6752.    *          If this parameter is undefined, the version of the running
  6753.    *          toolkit is used.
  6754.    * @returns true if the item is compatible with this version of the 
  6755.    *          application, false, otherwise.
  6756.    */
  6757.   isBlocklisted: function(id, extVersion, appVersion, toolkitVersion) {
  6758.     if (appVersion === undefined)
  6759.       appVersion = gApp.version;
  6760.     if (toolkitVersion === undefined)
  6761.       toolkitVersion = gApp.platformVersion;
  6762.  
  6763.     var blItem = Blocklist.entries[id];
  6764.     if (!blItem)
  6765.       return false;
  6766.  
  6767.     var versionChecker = getVersionChecker();
  6768.     for (var i = 0; i < blItem.length; ++i) {
  6769.       if (versionChecker.compare(extVersion, blItem[i].minVersion) < 0  ||
  6770.           versionChecker.compare(extVersion, blItem[i].maxVersion) > 0)
  6771.         continue;
  6772.  
  6773.       var blTargetApp = blItem[i].targetApps[gApp.ID];
  6774.       if (blTargetApp) {
  6775.         for (var x = 0; x < blTargetApp.length; ++x) {
  6776.           if (versionChecker.compare(appVersion, blTargetApp[x].minVersion) < 0  ||
  6777.               versionChecker.compare(appVersion, blTargetApp[x].maxVersion) > 0)
  6778.             continue;
  6779.           return true;
  6780.         }
  6781.       }
  6782.  
  6783.       blTargetApp = blItem[i].targetApps[TOOLKIT_ID];
  6784.       if (!blTargetApp)
  6785.         return false;
  6786.       for (x = 0; x < blTargetApp.length; ++x) {
  6787.         if (versionChecker.compare(toolkitVersion, blTargetApp[x].minVersion) < 0  ||
  6788.             versionChecker.compare(toolkitVersion, blTargetApp[x].maxVersion) > 0)
  6789.           continue;
  6790.         return true;
  6791.       }
  6792.     }
  6793.     return false;
  6794.   },
  6795.  
  6796.   /**
  6797.    * Gets a list of items that are incompatible with a specific application version.
  6798.    * @param   appID
  6799.    *          The ID of the application - XXXben unused?
  6800.    * @param   appVersion
  6801.    *          The Version of the application to check for incompatibility against.
  6802.    * @param   desiredType
  6803.    *          The nsIUpdateItem type of items to look for
  6804.    * @param   includeDisabled
  6805.    *          Whether or not disabled items should be included in the set returned
  6806.    * @returns An array of nsIUpdateItems that are incompatible with the application
  6807.    *          ID/Version supplied.
  6808.    */
  6809.   getIncompatibleItemList: function(appID, appVersion, desiredType, includeDisabled) {
  6810.     var items = [];
  6811.     var ctr = getContainer(this._inner, this._itemRoot);
  6812.     var elements = ctr.GetElements();
  6813.     while (elements.hasMoreElements()) {
  6814.       var item = elements.getNext().QueryInterface(Components.interfaces.nsIRDFResource);
  6815.       var id = stripPrefix(item.Value, PREFIX_ITEM_URI);
  6816.       var type = this.getItemProperty(id, "type");
  6817.       // Skip this item if we're not seeking disabled items
  6818.       if (!includeDisabled && this.getItemProperty(id, "isDisabled") == "true")
  6819.         continue;
  6820.       
  6821.       // If the id of this item matches one of the items potentially installed
  6822.       // with and maintained by this application AND it is installed in the 
  6823.       // global install location (i.e. the place installed by the app installer)
  6824.       // it is and can be managed by the update file - it's not an item that has
  6825.       // been manually installed by the user into their profile dir, and as such
  6826.       // it is always compatible with the next release of the application since
  6827.       // we will continue to support it.
  6828.       var locationKey = this.getItemProperty(id, "installLocation");
  6829.       var appManaged = this.getItemProperty(id, "appManaged") == "true";
  6830.       if (appManaged && locationKey == KEY_APP_GLOBAL)
  6831.         continue;
  6832.  
  6833.       if (type != -1 && (type & desiredType) && 
  6834.           !this.isCompatible(this, item, appVersion))
  6835.         items.push(this.getItemForID(id));
  6836.     }
  6837.     return items;
  6838.   },
  6839.   
  6840.   /**
  6841.    * Retrieves a list of items that will be blocklisted by the application for
  6842.    * a specific application or toolkit version.
  6843.    * @param   appVersion
  6844.    *          The Version of the application to check the blocklist against.
  6845.    * @param   toolkitVersion
  6846.    *          The Version of the toolkit to check the blocklist against.
  6847.    * @param   desiredType
  6848.    *          The nsIUpdateItem type of items to look for
  6849.    * @param   includeAppDisabled
  6850.    *          Whether or not items that are or are already set to be disabled
  6851.    *          by the app on next restart should be included in the set returned
  6852.    * @returns An array of nsIUpdateItems that are blocklisted with the application
  6853.    *          or toolkit version supplied.
  6854.    */
  6855.   getBlocklistedItemList: function(appVersion, toolkitVersion, desiredType,
  6856.                                    includeAppDisabled) {
  6857.     var items = [];
  6858.     var ctr = getContainer(this._inner, this._itemRoot);
  6859.     var elements = ctr.GetElements();
  6860.     while (elements.hasMoreElements()) {
  6861.       var item = elements.getNext().QueryInterface(Components.interfaces.nsIRDFResource);
  6862.       var id = stripPrefix(item.Value, PREFIX_ITEM_URI);
  6863.       var type = this.getItemProperty(id, "type");
  6864.  
  6865.       if (!includeAppDisabled &&
  6866.           (this.getItemProperty(id, "appDisabled") == "true" ||
  6867.           this.getItemProperty(id, "appDisabled") == OP_NEEDS_DISABLE))
  6868.         continue;
  6869.  
  6870.       var extVersion = this.getItemProperty(id, "version");
  6871.       if (type != -1 && (type & desiredType) && 
  6872.           this.isBlocklisted(id, extVersion, appVersion, toolkitVersion))
  6873.         items.push(this.getItemForID(id));
  6874.     }
  6875.     return items;
  6876.   },
  6877.  
  6878.   /**
  6879.    * Gets a list of items of a specific type
  6880.    * @param   desiredType
  6881.    *          The nsIUpdateItem type of items to return
  6882.    * @param   countRef
  6883.    *          The XPCJS reference to the size of the returned array
  6884.    * @returns An array of nsIUpdateItems, populated only with an item for |id|
  6885.    *          if |id| is non-null, otherwise all items matching the specified
  6886.    *          type.
  6887.    */
  6888.   getItemList: function(desiredType, countRef) {
  6889.     var items = [];
  6890.     var ctr = getContainer(this, this._itemRoot);      
  6891.     var elements = ctr.GetElements();
  6892.     while (elements.hasMoreElements()) {
  6893.       var e = elements.getNext().QueryInterface(Components.interfaces.nsIRDFResource);
  6894.       var eID = stripPrefix(e.Value, PREFIX_ITEM_URI);
  6895.       var type = this.getItemProperty(eID, "type");
  6896.       if (type != -1 && type & desiredType)
  6897.         items.push(this.getItemForID(eID));
  6898.     }
  6899.     countRef.value = items.length;
  6900.     return items;
  6901.   },
  6902.  
  6903.   /**
  6904.    * Retrieves a list of installed nsIUpdateItems of items that are dependent
  6905.    * on another item.
  6906.    * @param   id
  6907.    *          The ID of the item that other items depend on.
  6908.    * @param   includeDisabled
  6909.    *          Whether to include disabled items in the set returned.
  6910.    * @param   countRef
  6911.    *          The XPCJS reference to the number of items returned.
  6912.    * @returns An array of installed nsIUpdateItems that depend on the item
  6913.    *          specified by the id parameter.
  6914.    */
  6915.   getDependentItemListForID: function(id, includeDisabled, countRef) {
  6916.     var items = [];
  6917.     var ds = this._inner;
  6918.     var ctr = getContainer(this, this._itemRoot);
  6919.     var elements = ctr.GetElements();
  6920.     while (elements.hasMoreElements()) {
  6921.       var e = elements.getNext().QueryInterface(Components.interfaces.nsIRDFResource);
  6922.       var dependentID = stripPrefix(e.Value, PREFIX_ITEM_URI);
  6923.       var targets = ds.GetTargets(e, EM_R("requires"), true);
  6924.       var idRes = EM_R("id");
  6925.       while (targets.hasMoreElements()) {
  6926.         var target = targets.getNext().QueryInterface(Components.interfaces.nsIRDFResource);
  6927.         var dependencyID = stringData(ds.GetTarget(target, idRes, true));
  6928.         if (dependencyID == id) {
  6929.           if (!includeDisabled && this.getItemProperty(dependentID, "isDisabled") == "true")
  6930.             continue;
  6931.           items.push(this.getItemForID(dependentID));
  6932.           break;
  6933.         }
  6934.       }
  6935.     }
  6936.     countRef.value = items.length;
  6937.     return items;
  6938.   },
  6939.  
  6940.   /**
  6941.    * Get a list of Item IDs that have a flag set
  6942.    * @param   flag
  6943.    *          The name of an RDF property (less EM_NS) to check for
  6944.    * @param   desiredType
  6945.    *          The nsIUpdateItem type of item to look for
  6946.    * @returns An array of Item IDs 
  6947.    *
  6948.    * XXXben - this function is a little weird since it returns an array of 
  6949.    *          strings, not an array of nsIUpdateItems...  
  6950.    */
  6951.   getItemsWithFlagUnset: function(flag, desiredType) {
  6952.     var items = [];
  6953.  
  6954.     var ctr = getContainer(this, this._itemRoot);    
  6955.     var elements = ctr.GetElements();
  6956.     while (elements.hasMoreElements()) {
  6957.       var e = elements.getNext().QueryInterface(Components.interfaces.nsIRDFResource);
  6958.       var id = stripPrefix(e.Value, PREFIX_ITEM_URI);
  6959.       var type = this.getItemProperty(id, "type");
  6960.       if (type != -1 && type & desiredType) {
  6961.         var value = this.GetTarget(e, EM_R(flag), true);
  6962.         if (!value)
  6963.           items.push(id);
  6964.       }
  6965.     }
  6966.     return items;
  6967.   },
  6968.   
  6969.   /**
  6970.    * Constructs an nsIUpdateItem for the given item ID
  6971.    * @param   id
  6972.    *          The GUID of the item to construct a nsIUpdateItem for
  6973.    * @returns The nsIUpdateItem for the id.
  6974.    */  
  6975.   getItemForID: function(id) {
  6976.     var r = getResourceForID(id);
  6977.     if (!r)
  6978.       return null;
  6979.     
  6980.     var targetAppInfo = this.getTargetApplicationInfo(id, this);
  6981.     var updateHash = this.getItemProperty(id, "availableUpdateHash");
  6982.     return makeItem(id, 
  6983.                     this.getItemProperty(id, "version"), 
  6984.                     this.getItemProperty(id, "installLocation"),
  6985.                     targetAppInfo ? targetAppInfo.minVersion : "",
  6986.                     targetAppInfo ? targetAppInfo.maxVersion : "",
  6987.                     this.getItemProperty(id, "name"),
  6988.                     this.getItemProperty(id, "availableUpdateURL"),
  6989.                     updateHash ? updateHash : "",
  6990.                     this.getItemProperty(id, "iconURL"), 
  6991.                     this.getItemProperty(id, "updateURL"), 
  6992.                     this.getItemProperty(id, "type"));
  6993.   },
  6994.   
  6995.   /**
  6996.    * Gets the name of the Install Location where an item is installed.
  6997.    * @param   id
  6998.    *          The GUID of the item to locate an Install Location for
  6999.    * @returns The string name of the Install Location where the item is 
  7000.    *          installed.
  7001.    */
  7002.   getInstallLocationKey: function(id) {
  7003.     return this.getItemProperty(id, "installLocation");
  7004.   },
  7005.   
  7006.   /**
  7007.    * Sets an RDF property on an item in a datasource. Does not create
  7008.    * multiple assertions
  7009.    * @param   datasource
  7010.    *          The target datasource where the property should be set
  7011.    * @param   source
  7012.    *          The RDF Resource to set the property on
  7013.    * @param   property
  7014.    *          The RDF Resource of the property to set
  7015.    * @param   newValue
  7016.    *          The RDF Node containing the new property value
  7017.    */
  7018.   _setProperty: function(datasource, source, property, newValue) {
  7019.     var oldValue = datasource.GetTarget(source, property, true);
  7020.     if (oldValue) {
  7021.       if (newValue)
  7022.         datasource.Change(source, property, oldValue, newValue);
  7023.       else
  7024.         datasource.Unassert(source, property, oldValue);
  7025.     }
  7026.     else if (newValue)
  7027.       datasource.Assert(source, property, newValue, true);
  7028.   },
  7029.   
  7030.   /**
  7031.    * Sets the target application info for an item in the Extensions
  7032.    * datasource and in the item's install manifest if it is installed in a
  7033.    * profile's extensions directory, it exists, and we have write access.
  7034.    * @param   id
  7035.    *          The ID of the item to update target application info for
  7036.    * @param   minVersion
  7037.    *          The minimum version of the target application that this item can
  7038.    *          run in
  7039.    * @param   maxVersion
  7040.    *          The maximum version of the target application that this item can
  7041.    *          run in
  7042.    */
  7043.   updateTargetAppInfo: function(id, minVersion, maxVersion)
  7044.   {
  7045.     // Update the Extensions datasource
  7046.     this.setTargetApplicationInfo(id, minVersion, maxVersion, null);
  7047.  
  7048.     var installLocation = InstallLocations.get(this.getInstallLocationKey(id));
  7049.     if (installLocation.name != KEY_APP_PROFILE)
  7050.       return;
  7051.  
  7052.     var installManifestFile = installLocation.getItemFile(id, FILE_INSTALL_MANIFEST);
  7053.     // Only update if the item exists and we can write to the location
  7054.     if (installManifestFile.exists() && installLocation.canAccess)
  7055.       this.setTargetApplicationInfo(id, minVersion, maxVersion,
  7056.                                     getInstallManifest(installManifestFile));
  7057.   },
  7058.  
  7059.   /**
  7060.    * Gets the updated target application info if it exists for an item from
  7061.    * the Extensions datasource during an installation or upgrade.
  7062.    * @param   id
  7063.    *          The ID of the item to discover updated target application info for
  7064.    * @returns A JS Object with the following properties:
  7065.    *          "id"            The id of the item
  7066.    *          "minVersion"    The updated minimum version of the target
  7067.    *                          application that this item can run in
  7068.    *          "maxVersion"    The updated maximum version of the target
  7069.    *                          application that this item can run in
  7070.    */
  7071.   getUpdatedTargetAppInfo: function(id) {
  7072.     // The default theme is always compatible so there is never update info.
  7073.     if (getResourceForID(id).EqualsNode(this._defaultTheme))
  7074.       return null;
  7075.  
  7076.     var appID = gApp.ID;
  7077.     var r = getResourceForID(id);
  7078.     var targetApps = this._inner.GetTargets(r, EM_R("targetApplication"), true);
  7079.     if (!targetApps.hasMoreElements())
  7080.       targetApps = this._inner.GetTargets(gInstallManifestRoot, EM_R("targetApplication"), true); 
  7081.     while (targetApps.hasMoreElements()) {
  7082.       var targetApp = targetApps.getNext();
  7083.       if (targetApp instanceof Components.interfaces.nsIRDFResource) {
  7084.         try {
  7085.           var foundAppID = stringData(this._inner.GetTarget(targetApp, EM_R("id"), true));
  7086.           if (foundAppID != appID) // Different target application
  7087.             continue;
  7088.           var updatedMinVersion = this._inner.GetTarget(targetApp, EM_R("updatedMinVersion"), true);
  7089.           var updatedMaxVersion = this._inner.GetTarget(targetApp, EM_R("updatedMaxVersion"), true);
  7090.           if (updatedMinVersion && updatedMaxVersion)
  7091.             return { id        : id,
  7092.                      minVersion: stringData(updatedMinVersion),
  7093.                      maxVersion: stringData(updatedMaxVersion) };
  7094.           else
  7095.             return null;
  7096.         }
  7097.         catch (e) { 
  7098.           continue;
  7099.         }
  7100.       }
  7101.     }
  7102.     return null;
  7103.   },
  7104.   
  7105.   /**
  7106.    * Sets the updated target application info for an item in the Extensions
  7107.    * datasource during an installation or upgrade.
  7108.    * @param   id
  7109.    *          The ID of the item to set updated target application info for
  7110.    * @param   updatedMinVersion
  7111.    *          The updated minimum version of the target application that this
  7112.    *          item can run in
  7113.    * @param   updatedMaxVersion
  7114.    *          The updated maximum version of the target application that this
  7115.    *          item can run in
  7116.    */
  7117.   setUpdatedTargetAppInfo: function(id, updatedMinVersion, updatedMaxVersion) {
  7118.     // The default theme is always compatible so it is never updated.
  7119.     if (getResourceForID(id).EqualsNode(this._defaultTheme))
  7120.       return;
  7121.  
  7122.     // Version/Dependency Info
  7123.     var updatedMinVersionRes = EM_R("updatedMinVersion");
  7124.     var updatedMaxVersionRes = EM_R("updatedMaxVersion");
  7125.  
  7126.     var appID = gApp.ID;
  7127.     var r = getResourceForID(id);
  7128.     var targetApps = this._inner.GetTargets(r, EM_R("targetApplication"), true);
  7129.     // add updatedMinVersion and updatedMaxVersion for an install else an upgrade
  7130.     if (!targetApps.hasMoreElements()) {
  7131.       var idRes = EM_R("id");
  7132.       var targetRes = getResourceForID(id);
  7133.       var property = EM_R("targetApplication");
  7134.       var anon = gRDF.GetAnonymousResource();
  7135.       this._inner.Assert(anon, idRes, EM_L(appID), true);
  7136.       this._inner.Assert(anon, updatedMinVersionRes, EM_L(updatedMinVersion), true);
  7137.       this._inner.Assert(anon, updatedMaxVersionRes, EM_L(updatedMaxVersion), true);
  7138.       this._inner.Assert(targetRes, property, anon, true);
  7139.     }
  7140.     else {
  7141.       while (targetApps.hasMoreElements()) {
  7142.         var targetApp = targetApps.getNext();
  7143.         if (targetApp instanceof Components.interfaces.nsIRDFResource) {
  7144.           var foundAppID = stringData(this._inner.GetTarget(targetApp, EM_R("id"), true));
  7145.           if (foundAppID != appID) // Different target application
  7146.             continue;
  7147.           this._inner.Assert(targetApp, updatedMinVersionRes, EM_L(updatedMinVersion), true);
  7148.           this._inner.Assert(targetApp, updatedMaxVersionRes, EM_L(updatedMaxVersion), true);
  7149.           break;
  7150.         }
  7151.       }
  7152.     }
  7153.     this.Flush();
  7154.   },
  7155.  
  7156.   /**
  7157.    * Gets the target application info for an item from a datasource.
  7158.    * @param   id
  7159.    *          The GUID of the item to discover target application info for
  7160.    * @param   datasource
  7161.    *          The datasource to look up target application info in
  7162.    * @returns A JS Object with the following properties:
  7163.    *          "minVersion"    The minimum version of the target application
  7164.    *                          that this item can run in
  7165.    *          "maxVersion"    The maximum version of the target application
  7166.    *                          that this item can run in
  7167.    *          or null, if no target application data exists for the specified
  7168.    *          id in the supplied datasource.
  7169.    */
  7170.   getTargetApplicationInfo: function(id, datasource) {
  7171.     // The default theme is always compatible. 
  7172.     if (getResourceForID(id).EqualsNode(this._defaultTheme)) {
  7173.       var ver = gApp.version;
  7174.       return { minVersion: ver, maxVersion: ver };
  7175.     }
  7176.     var firefoxAppInfo = null;
  7177.     var appID = gApp.ID;
  7178.     var r = getResourceForID(id);
  7179.     var targetApps = datasource.GetTargets(r, EM_R("targetApplication"), true);
  7180.     if (!targetApps)
  7181.       return null;
  7182.     if (!targetApps.hasMoreElements())
  7183.       targetApps = datasource.GetTargets(gInstallManifestRoot, EM_R("targetApplication"), true); 
  7184.     while (targetApps.hasMoreElements()) {
  7185.       var targetApp = targetApps.getNext();
  7186.       if (targetApp instanceof Components.interfaces.nsIRDFResource) {
  7187.         try {
  7188.           var foundAppID = stringData(datasource.GetTarget(targetApp, EM_R("id"), true));
  7189.  
  7190.           var appInfo = {
  7191.             appID: foundAppID,
  7192.             minVersion: stringData(datasource.GetTarget(targetApp, EM_R("minVersion"), true)),
  7193.             maxVersion: stringData(datasource.GetTarget(targetApp, EM_R("maxVersion"), true))
  7194.           };
  7195.  
  7196.           if (foundAppID == appID) {
  7197.             appInfo.maxVersion = fixupFlockMaxVersion(appInfo.maxVersion);
  7198.             return appInfo;
  7199.           } else if (foundAppID == firefoxAppID) {
  7200.             firefoxAppInfo = appInfo;
  7201.           } else {
  7202.             continue;
  7203.           }
  7204.         }
  7205.         catch (e) { 
  7206.           continue;
  7207.         }
  7208.       }
  7209.     }
  7210.     if (firefoxAppInfo)
  7211.       return firefoxAppInfo;
  7212.     return null;
  7213.   },
  7214.   
  7215.   /**
  7216.    * Sets the target application info for an item in a datasource.
  7217.    * @param   id
  7218.    *          The GUID of the item to discover target application info for
  7219.    * @param   minVersion
  7220.    *          The minimum version of the target application that this item can
  7221.    *          run in
  7222.    * @param   maxVersion
  7223.    *          The maximum version of the target application that this item can
  7224.    *          run in
  7225.    * @param   datasource
  7226.    *          The datasource to loko up target application info in
  7227.    */
  7228.   setTargetApplicationInfo: function(id, minVersion, maxVersion, datasource) {
  7229.     var targetDataSource = datasource;
  7230.     if (!targetDataSource)
  7231.       targetDataSource = this._inner;
  7232.       
  7233.     var appID = gApp.ID;
  7234.     var r = getResourceForID(id);
  7235.     var targetApps = targetDataSource.GetTargets(r, EM_R("targetApplication"), true);
  7236.     if (!targetApps.hasMoreElements())
  7237.       targetApps = datasource.GetTargets(gInstallManifestRoot, EM_R("targetApplication"), true); 
  7238.     while (targetApps.hasMoreElements()) {
  7239.       var targetApp = targetApps.getNext();
  7240.       if (targetApp instanceof Components.interfaces.nsIRDFResource) {
  7241.         var foundAppID = stringData(targetDataSource.GetTarget(targetApp, EM_R("id"), true));
  7242.         // Different target application
  7243.         if (foundAppID != appID && foundAppID != firefoxAppID)
  7244.           continue;
  7245.         
  7246.         this._setProperty(targetDataSource, targetApp, EM_R("minVersion"), EM_L(minVersion));
  7247.         this._setProperty(targetDataSource, targetApp, EM_R("maxVersion"), EM_L(maxVersion));
  7248.         
  7249.         // If we were setting these properties on the main datasource, flush
  7250.         // it now. (Don't flush changes set on Install Manifests - they are
  7251.         // fleeting).
  7252.         if (!datasource)
  7253.           this.Flush();
  7254.  
  7255.         break;
  7256.       }
  7257.     }
  7258.   },
  7259.   
  7260.   /** 
  7261.    * Gets a property of an item
  7262.    * @param   id
  7263.    *          The GUID of the item
  7264.    * @param   property
  7265.    *          The name of the property (excluding EM_NS)
  7266.    * @returns The literal value of the property, or undefined if there is no 
  7267.    *          value.
  7268.    */
  7269.   getItemProperty: function(id, property) { 
  7270.     var item = getResourceForID(id);
  7271.     if (!item) {
  7272.       LOG("getItemProperty failing for lack of an item. This means getResourceForItem \
  7273.            failed to locate a resource for aItemID (item ID = " + id + ", property = " + property + ")");
  7274.     }
  7275.     else 
  7276.       return this._getItemProperty(item, property);
  7277.     return undefined;
  7278.   },
  7279.   
  7280.   /**
  7281.    * Gets a property of an item resource
  7282.    * @param   itemResource
  7283.    *          The RDF Resource of the item
  7284.    * @param   property
  7285.    *          The name of the property (excluding EM_NS)
  7286.    * @returns The literal value of the property, or undefined if there is no
  7287.    *          value.
  7288.    */
  7289.   _getItemProperty: function(itemResource, property) {
  7290.     var target = this.GetTarget(itemResource, EM_R(property), true);
  7291.     var value = stringData(target);
  7292.     if (value === undefined)
  7293.       value = intData(target);
  7294.     return value === undefined ? "" : value;
  7295.   },
  7296.   
  7297.   /**
  7298.    * Sets a property on an item.
  7299.    * @param   id
  7300.    *          The GUID of the item
  7301.    * @param   propertyArc
  7302.    *          The RDF Resource of the property arc
  7303.    * @param   propertyValue
  7304.    *          A nsIRDFLiteral value of the property to be set
  7305.    */
  7306.   setItemProperty: function (id, propertyArc, propertyValue) {
  7307.     var item = getResourceForID(id);
  7308.     this._setProperty(this._inner, item, propertyArc, propertyValue);
  7309.     this.Flush();  
  7310.   },
  7311.  
  7312.   /**
  7313.    * Inserts the RDF resource for an item into a container.
  7314.    * @param   id
  7315.    *          The GUID of the item
  7316.    */
  7317.   insertItemIntoContainer: function(id) {
  7318.     // Get the target container and resource
  7319.     var ctr = getContainer(this._inner, this._itemRoot);
  7320.     var itemResource = getResourceForID(id);
  7321.     // Don't bother adding the extension to the list if it's already there. 
  7322.     // (i.e. we're upgrading)
  7323.     var oldIndex = ctr.IndexOf(itemResource);
  7324.     if (oldIndex == -1)
  7325.       ctr.AppendElement(itemResource);
  7326.     this.Flush();
  7327.   }, 
  7328.  
  7329.   /**
  7330.    * Removes the RDF resource for an item from its container.
  7331.    * @param   id
  7332.    *          The GUID of the item
  7333.    */
  7334.   removeItemFromContainer: function(id) {
  7335.     var ctr = getContainer(this._inner, this._itemRoot);
  7336.     var itemResource = getResourceForID(id);
  7337.     ctr.RemoveElement(itemResource, true);
  7338.     this.Flush();
  7339.   },
  7340.  
  7341.   /**
  7342.    * Removes a corrupt item entry from the extension list added due to buggy 
  7343.    * code in previous EM versions!  
  7344.    * @param   id
  7345.    *          The GUID of the item
  7346.    */
  7347.   removeCorruptItem: function(id) {
  7348.     this.removeItemMetadata(id);
  7349.     this.removeItemFromContainer(id);
  7350.   },
  7351.  
  7352.   /**
  7353.    * Removes a corrupt download entry from the list
  7354.    * @param   uri
  7355.    *          The RDF URI of the item.
  7356.    * @returns The RDF Resource of the removed entry 
  7357.    */
  7358.   removeCorruptDLItem: function(uri) {
  7359.     var itemResource = gRDF.GetResource(uri);
  7360.     var ctr = getContainer(this._inner, this._itemRoot);
  7361.     if (ctr.IndexOf(itemResource) != -1) {
  7362.       ctr.RemoveElement(itemResource, true);
  7363.       this._cleanResource(itemResource);
  7364.       this.Flush();
  7365.     }
  7366.     return itemResource;
  7367.   },
  7368.   
  7369.   /**
  7370.    * Copies metadata from an Install Manifest Datasource into the Extensions
  7371.    * DataSource.
  7372.    * @param   id
  7373.    *          The GUID of the item
  7374.    * @param   installManifest
  7375.    *          The Install Manifest datasource we are copying from
  7376.    * @param   installLocation
  7377.    *          The Install Location of the item. 
  7378.    */
  7379.   addItemMetadata: function(id, installManifest, installLocation) {
  7380.     // Copy the assertions over from the source datasource. 
  7381.     var targetRes = getResourceForID(id);
  7382.     // Assert properties with single values
  7383.     var singleProps = ["version", "name", "description", "creator", "homepageURL", 
  7384.                        "updateURL", "updateService", "optionsURL", "aboutURL", 
  7385.                        "iconURL", "internalName"];
  7386.  
  7387.     // Items installed into restricted Install Locations can also be locked 
  7388.     // (can't be removed or disabled), and hidden (not shown in the UI)
  7389.     if (installLocation.restricted)
  7390.       singleProps = singleProps.concat(["locked", "hidden"]);
  7391.     if (installLocation.name == KEY_APP_GLOBAL) 
  7392.       singleProps = singleProps.concat(["appManaged"]);
  7393.     for (var i = 0; i < singleProps.length; ++i) {
  7394.       var property = EM_R(singleProps[i]);
  7395.       var literal = installManifest.GetTarget(gInstallManifestRoot, property, true);
  7396.       // If literal is null, _setProperty will remove any existing.
  7397.       this._setProperty(this._inner, targetRes, property, literal);
  7398.     }    
  7399.     
  7400.     // Assert properties with multiple values    
  7401.     var manyProps = ["developer", "translator", "contributor"];
  7402.     for (var i = 0; i < manyProps.length; ++i) {
  7403.       var property = EM_R(manyProps[i]);
  7404.       var literals = installManifest.GetTargets(gInstallManifestRoot, property, true);
  7405.       
  7406.       var oldValues = this._inner.GetTargets(targetRes, property, true);
  7407.       while (oldValues.hasMoreElements()) {
  7408.         var oldValue = oldValues.getNext().QueryInterface(Components.interfaces.nsIRDFNode);
  7409.         this._inner.Unassert(targetRes, property, oldValue);
  7410.       }
  7411.       while (literals.hasMoreElements()) {
  7412.         var literal = literals.getNext().QueryInterface(Components.interfaces.nsIRDFNode);
  7413.         this._inner.Assert(targetRes, property, literal, true);
  7414.       }
  7415.     }
  7416.  
  7417.     // Version/Dependency Info
  7418.     var versionProps = ["targetApplication", "requires"];
  7419.     var idRes = EM_R("id");
  7420.     var minVersionRes = EM_R("minVersion");
  7421.     var maxVersionRes = EM_R("maxVersion");
  7422.     for (var i = 0; i < versionProps.length; ++i) {
  7423.       var property = EM_R(versionProps[i]);
  7424.       var newVersionInfos = installManifest.GetTargets(gInstallManifestRoot, property, true);
  7425.  
  7426.       var oldVersionInfos = this._inner.GetTargets(targetRes, property, true);
  7427.       while (oldVersionInfos.hasMoreElements()) {
  7428.         var oldVersionInfo = oldVersionInfos.getNext().QueryInterface(Components.interfaces.nsIRDFResource);
  7429.         this._cleanResource(oldVersionInfo);
  7430.         this._inner.Unassert(targetRes, property, oldVersionInfo);
  7431.       }
  7432.       while (newVersionInfos.hasMoreElements()) {
  7433.         var newVersionInfo = newVersionInfos.getNext().QueryInterface(Components.interfaces.nsIRDFResource);
  7434.         var anon = gRDF.GetAnonymousResource();
  7435.         this._inner.Assert(anon, idRes, installManifest.GetTarget(newVersionInfo, idRes, true), true);
  7436.         this._inner.Assert(anon, minVersionRes, installManifest.GetTarget(newVersionInfo, minVersionRes, true), true);
  7437.         this._inner.Assert(anon, maxVersionRes, installManifest.GetTarget(newVersionInfo, maxVersionRes, true), true);
  7438.         this._inner.Assert(targetRes, property, anon, true);
  7439.       }
  7440.     }
  7441.     this.updateProperty(id, "opType");
  7442.     this.updateProperty(id, "updateable");
  7443.     this.Flush();
  7444.   },
  7445.   
  7446.   /**
  7447.    * Strips an item entry of all assertions.
  7448.    * @param   id
  7449.    *          The GUID of the item
  7450.    */
  7451.   removeItemMetadata: function(id) {
  7452.     var item = getResourceForID(id);
  7453.     var resources = ["targetApplication", "requires"];
  7454.     for (var i = 0; i < resources.length; ++i) {
  7455.       var targetApps = this._inner.GetTargets(item, EM_R(resources[i]), true);
  7456.       while (targetApps.hasMoreElements()) {
  7457.         var targetApp = targetApps.getNext().QueryInterface(Components.interfaces.nsIRDFResource);
  7458.         this._cleanResource(targetApp);
  7459.       }
  7460.     }
  7461.  
  7462.     this._cleanResource(item);
  7463.   },
  7464.   
  7465.   /**
  7466.    * Strips a resource of all outbound assertions. We use methods like this 
  7467.    * since the RDFXMLDatasource will write out all assertions, even if they
  7468.    * are not connected through our root. 
  7469.    * @param   resource
  7470.    *          The resource to clean. 
  7471.    */
  7472.   _cleanResource: function(resource) {
  7473.     // Remove outward arcs
  7474.     var arcs = this._inner.ArcLabelsOut(resource);
  7475.     while (arcs.hasMoreElements()) {
  7476.       var arc = arcs.getNext().QueryInterface(Components.interfaces.nsIRDFResource);
  7477.       var targets = this._inner.GetTargets(resource, arc, true);
  7478.       while (targets.hasMoreElements()) {
  7479.         var value = targets.getNext().QueryInterface(Components.interfaces.nsIRDFNode);
  7480.         if (value)
  7481.           this._inner.Unassert(resource, arc, value);
  7482.       }
  7483.     }
  7484.   },
  7485.   
  7486.   /**
  7487.    * Notify views that this propery has changed (this is for properties that
  7488.    * are implemented by this datasource rather than by the inner in-memory
  7489.    * datasource and thus do not get free change handling).
  7490.    * @param   id 
  7491.    *          The GUID of the item to update the property for.
  7492.    * @param   property
  7493.    *          The property (less EM_NS) to update.
  7494.    */
  7495.   updateProperty: function(id, property) {
  7496.     var item = getResourceForID(id);
  7497.     this._updateProperty(item, property);
  7498.   },
  7499.   
  7500.   /**
  7501.    * Notify views that this propery has changed (this is for properties that
  7502.    * are implemented by this datasource rather than by the inner in-memory
  7503.    * datasource and thus do not get free change handling). This allows updating
  7504.    * properties for download items which don't have the em item prefix in there
  7505.    ( resource value. In most instances updateProperty should be used.
  7506.    * @param   item
  7507.    *          The item to update the property for.
  7508.    * @param   property
  7509.    *          The property (less EM_NS) to update.
  7510.    */
  7511.   _updateProperty: function(item, property) {
  7512.     var propertyResource = EM_R(property);
  7513.     var value = this.GetTarget(item, propertyResource, true);
  7514.     if (item && value) {
  7515.       for (var i = 0; i < this._observers.length; ++i)
  7516.         this._observers[i].onChange(this, item, propertyResource, 
  7517.                                     EM_L(""), value);
  7518.     }
  7519.   },
  7520.   
  7521.   /**
  7522.    * Move an Item to the index of another item in its container.
  7523.    * @param   movingID
  7524.    *          The ID of the item to be moved.
  7525.    * @param   destinationID
  7526.    *          The ID of an item to move another item to.
  7527.    */
  7528.   moveToIndexOf: function(movingID, destinationID) {
  7529.     var extensions = gRDF.GetResource(RDFURI_ITEM_ROOT);
  7530.     var ctr = getContainer(this._inner, extensions);
  7531.     var item = gRDF.GetResource(movingID);
  7532.     var index = ctr.IndexOf(gRDF.GetResource(destinationID));
  7533.     if (index == -1)
  7534.       index = 1; // move to the beginning if destinationID is not found
  7535.     this._inner.beginUpdateBatch();
  7536.     ctr.RemoveElement(item, true);
  7537.     ctr.InsertElementAt(item, index, true);
  7538.     this._inner.endUpdateBatch();
  7539.     this.Flush();
  7540.   },
  7541.  
  7542.   /**
  7543.    * Sorts addons of the specified type by the specified property starting from
  7544.    * the top of their container. If the addons are already sorted then no action
  7545.    * is performed.
  7546.    * @param   type
  7547.    *          The nsIUpdateItem type of the items to sort.
  7548.    * @param   propertyName
  7549.    *          The RDF property name used for sorting.
  7550.    * @param   isAscending
  7551.    *          true to sort ascending and false to sort descending
  7552.    */
  7553.   sortTypeByProperty: function(type, propertyName, isAscending) {
  7554.     var items = [];
  7555.     var ctr = getContainer(this._inner, this._itemRoot);
  7556.     var elements = ctr.GetElements();
  7557.     // Base 0 ordinal for checking against the existing order after sorting
  7558.     var ordinal = 0;
  7559.     while (elements.hasMoreElements()) {
  7560.       var item = elements.getNext().QueryInterface(Components.interfaces.nsIRDFResource);
  7561.       var id = stripPrefix(item.Value, PREFIX_ITEM_URI);
  7562.       var itemType = this.getItemProperty(id, "type");
  7563.       if (itemType & type) {
  7564.         items.push({ item   : item,
  7565.                      ordinal: ordinal,
  7566.                      sortkey: this.getItemProperty(id, propertyName).toLowerCase() });
  7567.         ordinal++;
  7568.       }
  7569.     }
  7570.  
  7571.     var direction = isAscending ? 1 : -1; 
  7572.     // Case insensitive sort
  7573.     function compare(a, b) {
  7574.         if (a.sortkey < b.sortkey) return (-1 * direction);
  7575.         if (a.sortkey > b.sortkey) return (1 * direction);
  7576.         return 0;
  7577.     }
  7578.     items.sort(compare);
  7579.  
  7580.     // Check if there are any changes in the order of the items
  7581.     var isDirty = false;
  7582.     for (var i = 0; i < items.length; i++) {
  7583.       if (items[i].ordinal != i) {
  7584.         isDirty = true;
  7585.         break;
  7586.       }
  7587.     }
  7588.  
  7589.     // If there are no changes then early return to avoid the perf impact
  7590.     if (!isDirty)
  7591.       return;
  7592.  
  7593.     // Reorder the items by moving them to the top of the container
  7594.     this.beginUpdateBatch();
  7595.     for (i = 0; i < items.length; i++) {
  7596.       ctr.RemoveElement(items[i].item, true);
  7597.       ctr.InsertElementAt(items[i].item, i + 1, true);
  7598.     }
  7599.     this.endUpdateBatch();
  7600.     this.Flush();
  7601.   },
  7602.  
  7603.   /**
  7604.    * Determines if an Item is an active download
  7605.    * @param   id
  7606.    *          The ID of the item. This will be a uri scheme without the
  7607.    *          em item prefix so getProperty shouldn't be used.
  7608.    * @returns true if the item is an active download, false otherwise.
  7609.    */
  7610.   isDownloadItem: function(id) {
  7611.     var downloadURL = stringData(this.GetTarget(gRDF.GetResource(id), EM_R("downloadURL"), true));
  7612.     return downloadURL && downloadURL != "";
  7613.   },
  7614.  
  7615.   /**
  7616.    * Adds an entry representing an active download to the appropriate container
  7617.    * @param   addon
  7618.    *          An object implementing nsIUpdateItem for the addon being 
  7619.    *          downloaded.
  7620.    */
  7621.   addDownload: function(addon) {
  7622.     // Updates have already been added to the datasource so we just update the
  7623.     // download state.
  7624.     if (addon.id != addon.xpiURL) {
  7625.       this.updateDownloadState(PREFIX_ITEM_URI + addon.id, "waiting");
  7626.       return;
  7627.     }
  7628.     var res = gRDF.GetResource(addon.xpiURL);
  7629.     this._setProperty(this._inner, res, EM_R("name"), EM_L(addon.name));
  7630.     this._setProperty(this._inner, res, EM_R("version"), EM_L(addon.version));
  7631.     this._setProperty(this._inner, res, EM_R("iconURL"), EM_L(addon.iconURL));
  7632.     this._setProperty(this._inner, res, EM_R("downloadURL"), EM_L(addon.xpiURL));
  7633.     this._setProperty(this._inner, res, EM_R("type"), EM_I(addon.type));
  7634.  
  7635.     var ctr = getContainer(this._inner, this._itemRoot);
  7636.     if (ctr.IndexOf(res) == -1)
  7637.       ctr.AppendElement(res);
  7638.     
  7639.     this.updateDownloadState(addon.xpiURL, "waiting");
  7640.     this.Flush();
  7641.   },
  7642.   
  7643.   /**
  7644.    * Adds an entry representing an item that is incompatible and is being
  7645.    * checked for a compatibility update.
  7646.    * @param   name
  7647.    *          The display name of the item being checked
  7648.    * @param   url
  7649.    *          The URL string of the xpi file that has been staged.
  7650.    * @param   type
  7651.    *          The nsIUpdateItem type of the item
  7652.    * @param   version
  7653.    *          The version of the item
  7654.    */
  7655.   addIncompatibleUpdateItem: function(name, url, type, version) {
  7656.     var iconURL = (type == nsIUpdateItem.TYPE_THEME) ? URI_GENERIC_ICON_THEME :
  7657.                                                        URI_GENERIC_ICON_XPINSTALL;
  7658.     var extensionsStrings = BundleManager.getBundle(URI_EXTENSIONS_PROPERTIES);
  7659.     var updateMsg = extensionsStrings.formatStringFromName("incompatibleUpdateMessage",
  7660.                                                            [BundleManager.appName, name], 2)
  7661.  
  7662.     var res = gRDF.GetResource(url);
  7663.     this._setProperty(this._inner, res, EM_R("name"), EM_L(name));
  7664.     this._setProperty(this._inner, res, EM_R("iconURL"), EM_L(iconURL));
  7665.     this._setProperty(this._inner, res, EM_R("downloadURL"), EM_L(url));
  7666.     this._setProperty(this._inner, res, EM_R("type"), EM_I(type));
  7667.     this._setProperty(this._inner, res, EM_R("version"), EM_L(version));
  7668.     this._setProperty(this._inner, res, EM_R("incompatibleUpdate"), EM_L("true"));
  7669.     this._setProperty(this._inner, res, EM_R("description"), EM_L(updateMsg));
  7670.  
  7671.     var ctr = getContainer(this._inner, this._itemRoot);
  7672.     if (ctr.IndexOf(res) == -1)
  7673.       ctr.AppendElement(res);
  7674.  
  7675.     this.updateDownloadState(url, "incompatibleUpdate");
  7676.     this.Flush();
  7677.   },
  7678.  
  7679.   /**
  7680.    * Removes an active download from the appropriate container
  7681.    * @param   url
  7682.    *          The URL string of the active download to be removed
  7683.    */
  7684.   removeDownload: function(url) {
  7685.     var res = gRDF.GetResource(url);
  7686.     var ctr = getContainer(this._inner, this._itemRoot);
  7687.     if (ctr.IndexOf(res) != -1) 
  7688.       ctr.RemoveElement(res, true);
  7689.     this._cleanResource(res);
  7690.     this.updateDownloadState(url, null);
  7691.     this.Flush();
  7692.   },
  7693.   
  7694.   /**
  7695.    * A hash of RDF resource values (e.g. Add-on IDs or XPI URLs) that represent
  7696.    * installation progress for a single browser session.
  7697.    */
  7698.   _progressData: { },
  7699.  
  7700.   /**
  7701.    * Updates the install progress data for a given ID (e.g. Add-on IDs or
  7702.    * XPI URLs).
  7703.    * @param   id
  7704.    *          The URL string of the active download to be removed
  7705.    * @param   state
  7706.    *          The current state in the installation process. If null the object
  7707.    *          is deleted from _progressData.
  7708.    */
  7709.   updateDownloadState: function(id, state) {
  7710.     if (!state) {
  7711.       if (id in this._progressData)
  7712.         delete this._progressData[id];
  7713.       return;
  7714.     }
  7715.     else {
  7716.       if (!(id in this._progressData)) 
  7717.         this._progressData[id] = { };
  7718.       this._progressData[id].state = state;
  7719.     }
  7720.     var item = gRDF.GetResource(id);
  7721.     this._updateProperty(item, "state");
  7722.   },
  7723.  
  7724.   updateDownloadProgress: function(id, progress) {
  7725.     if (!progress) {
  7726.       if (!(id in this._progressData))
  7727.         return;
  7728.       this._progressData[id].progress = null;
  7729.     }
  7730.     else {
  7731.       if (!(id in this._progressData))
  7732.         this.updateDownloadState(id, "downloading");
  7733.  
  7734.       if (this._progressData[id].progress == progress)
  7735.         return;
  7736.  
  7737.       this._progressData[id].progress = progress;
  7738.     }
  7739.     var item = gRDF.GetResource(id);
  7740.     this._updateProperty(item, "progress");
  7741.   },
  7742.  
  7743.   /**
  7744.    * A GUID->location-key hash of items that are visible to the application.
  7745.    * These are items that show up in the Extension/Themes etc UI. If there is
  7746.    * an instance of the same item installed in Install Locations of differing 
  7747.    * profiles, the item at the highest priority location will appear in this 
  7748.    * list.
  7749.    */
  7750.   visibleItems: { },
  7751.   
  7752.   /**
  7753.    * Walk the list of installed items and determine what the visible list is, 
  7754.    * based on which items are visible at the highest priority locations. 
  7755.    */  
  7756.   _buildVisibleItemList: function() {
  7757.     var ctr = getContainer(this, this._itemRoot);
  7758.     var items = ctr.GetElements();
  7759.     while (items.hasMoreElements()) {
  7760.       var item = items.getNext().QueryInterface(Components.interfaces.nsIRDFResource);
  7761.       // Resource URIs adopt the format: location-key,item-id
  7762.       var id = stripPrefix(item.Value, PREFIX_ITEM_URI);
  7763.       this.visibleItems[id] = this.getItemProperty(id, "installLocation");
  7764.     }
  7765.   },
  7766.   
  7767.   /**
  7768.    * Updates an item's location in the visible item list.
  7769.    * @param   id
  7770.    *          The GUID of the item to update
  7771.    * @param   locationKey
  7772.    *          The name of the Install Location where the item is installed.
  7773.    * @param   forceReplace
  7774.    *          true if the new location should be used, regardless of its 
  7775.    *          priority relationship to existing entries, false if the location
  7776.    *          should only be updated if its priority is lower than the existing
  7777.    *          value.
  7778.    */
  7779.   updateVisibleList: function(id, locationKey, forceReplace) {
  7780.     if (id in this.visibleItems && this.visibleItems[id]) {
  7781.       var oldLocation = InstallLocations.get(this.visibleItems[id]);
  7782.       var newLocation = InstallLocations.get(locationKey);
  7783.       if (forceReplace || newLocation.priority < oldLocation.priority) 
  7784.         this.visibleItems[id] = locationKey;
  7785.     }
  7786.     else 
  7787.       this.visibleItems[id] = locationKey;
  7788.   },
  7789.  
  7790.   /**
  7791.    * Load the Extensions Datasource from disk.
  7792.    */
  7793.   loadExtensions: function() {
  7794.     Blocklist._ensureBlocklist();
  7795.     var extensionsFile  = getFile(KEY_PROFILEDIR, [FILE_EXTENSIONS]);
  7796.     try {
  7797.       this._inner = gRDF.GetDataSourceBlocking(getURLSpecFromFile(extensionsFile));
  7798.     }
  7799.     catch (e) {
  7800.       LOG("Datasource::loadExtensions: removing corrupted extensions datasource " +
  7801.           " file = " + extensionsFile.path + ", exception = " + e + "\n");
  7802.       extensionsFile.remove(false);
  7803.       return;
  7804.     }
  7805.  
  7806.     var cu = Components.classes["@mozilla.org/rdf/container-utils;1"]
  7807.                        .getService(Components.interfaces.nsIRDFContainerUtils);
  7808.     cu.MakeSeq(this._inner, this._itemRoot);
  7809.  
  7810.     this._buildVisibleItemList();
  7811.   },
  7812.   
  7813.   /**
  7814.    * See nsIExtensionManager.idl
  7815.    */
  7816.   onUpdateStarted: function() {
  7817.     LOG("Datasource: Update Started");
  7818.   },
  7819.   
  7820.   /**
  7821.    * See nsIExtensionManager.idl
  7822.    */
  7823.   onUpdateEnded: function() {
  7824.     LOG("Datasource: Update Ended");
  7825.   },
  7826.   
  7827.   /**
  7828.    * See nsIExtensionManager.idl
  7829.    */
  7830.   onAddonUpdateStarted: function(addon) {
  7831.     LOG("Datasource: Addon Update Started: " + addon.id);
  7832.     this.updateProperty(addon.id, "availableUpdateURL");
  7833.   },
  7834.   
  7835.   /**
  7836.    * See nsIExtensionManager.idl
  7837.    */
  7838.   onAddonUpdateEnded: function(addon, status) {
  7839.     LOG("Datasource: Addon Update Ended: " + addon.id + ", status: " + status);
  7840.     var url = null, hash = null, version = null;
  7841.     var updateAvailable = status == nsIAddonUpdateCheckListener.STATUS_UPDATE;
  7842.     if (updateAvailable) {
  7843.       url = EM_L(addon.xpiURL);
  7844.       if (addon.xpiHash)
  7845.         hash = EM_L(addon.xpiHash);
  7846.       version = EM_L(addon.version);
  7847.     }
  7848.     this.setItemProperty(addon.id, EM_R("availableUpdateURL"), url);
  7849.     this.setItemProperty(addon.id, EM_R("availableUpdateHash"), hash);
  7850.     this.setItemProperty(addon.id, EM_R("availableUpdateVersion"), version);
  7851.     this.updateProperty(addon.id, "availableUpdateURL");
  7852.   },
  7853.  
  7854.   /////////////////////////////////////////////////////////////////////////////
  7855.   // nsIRDFDataSource
  7856.   get URI() {
  7857.     return "rdf:extensions";
  7858.   },
  7859.   
  7860.   GetSource: function(property, target, truthValue) {
  7861.     return this._inner.GetSource(property, target, truthValue);
  7862.   },
  7863.   
  7864.   GetSources: function(property, target, truthValue) {
  7865.     return this._inner.GetSources(property, target, truthValue);
  7866.   },
  7867.   
  7868.   /**
  7869.    * Gets an URL to a theme's image file
  7870.    * @param   item
  7871.    *          The RDF Resource representing the item 
  7872.    * @param   fileName
  7873.    *          The file to locate a URL for
  7874.    * @param   fallbackURL
  7875.    *          If the location fails, supply this URL instead
  7876.    * @returns An RDF Resource to the URL discovered, or the fallback
  7877.    *          if the discovery failed. 
  7878.    */
  7879.   _getThemeImageURL: function(item, fileName, fallbackURL) {
  7880.     var id = stripPrefix(item.Value, PREFIX_ITEM_URI);
  7881.     var installLocation = this._em.getInstallLocation(id);
  7882.     var file = installLocation.getItemFile(id, fileName)
  7883.     if (file.exists())
  7884.       return gRDF.GetResource(getURLSpecFromFile(file));
  7885.  
  7886.     if (id == stripPrefix(RDFURI_DEFAULT_THEME, PREFIX_ITEM_URI)) {
  7887.       var jarFile = getFile(KEY_APPDIR, [DIR_CHROME, FILE_DEFAULT_THEME_JAR]);
  7888.       var url = "jar:" + getURLSpecFromFile(jarFile) + "!/" + fileName;
  7889.       return gRDF.GetResource(url);
  7890.     }
  7891.  
  7892.     return fallbackURL ? gRDF.GetResource(fallbackURL) : null;
  7893.   },
  7894.  
  7895.   /**
  7896.    * Get the em:iconURL property (icon url of the item)
  7897.    */
  7898.   _rdfGet_iconURL: function(item, property) {
  7899.     var id = stripPrefix(item.Value, PREFIX_ITEM_URI);
  7900.     var type = this.getItemProperty(id, "type");
  7901.     if (type & nsIUpdateItem.TYPE_THEME)
  7902.       return this._getThemeImageURL(item, "icon.png", URI_GENERIC_ICON_THEME);
  7903.  
  7904.     if (inSafeMode())
  7905.       return gRDF.GetResource(URI_GENERIC_ICON_XPINSTALL);
  7906.  
  7907.     var hasIconURL = this._inner.hasArcOut(item, property);
  7908.     // If the addon doesn't have an IconURL property or it is disabled use the
  7909.     // generic icon URL instead.
  7910.     if (!hasIconURL || this.getItemProperty(id, "isDisabled") == "true")
  7911.       return gRDF.GetResource(URI_GENERIC_ICON_XPINSTALL);
  7912.     var iconURL = stringData(this._inner.GetTarget(item, property, true));
  7913.     try {
  7914.       var uri = newURI(iconURL);
  7915.       var scheme = uri.scheme;
  7916.       // Only allow chrome URIs or when installing http(s) URIs.
  7917.       if (scheme == "chrome" || (scheme == "http" || scheme == "https") &&
  7918.           this._inner.hasArcOut(item, EM_R("downloadURL")))
  7919.         return null;
  7920.     }
  7921.     catch (e) {
  7922.     }
  7923.     // Use a generic icon URL for addons that have an invalid iconURL.
  7924.     return gRDF.GetResource(URI_GENERIC_ICON_XPINSTALL);
  7925.   },
  7926.   
  7927.   /**
  7928.    * Get the em:previewImage property (preview image of the item)
  7929.    */
  7930.   _rdfGet_previewImage: function(item, property) {
  7931.     var type = this.getItemProperty(stripPrefix(item.Value, PREFIX_ITEM_URI), "type");
  7932.     if (type != -1 && type & nsIUpdateItem.TYPE_THEME)
  7933.       return this._getThemeImageURL(item, "preview.png", null);
  7934.     return null;
  7935.   },
  7936.   
  7937.   /**
  7938.    * If we're in safe mode, the item is disabled by the user or app, or the
  7939.    * item is to be upgraded force the generic about dialog for the item.
  7940.    */
  7941.   _rdfGet_aboutURL: function(item, property) {
  7942.     var id = stripPrefix(item.Value, PREFIX_ITEM_URI);
  7943.     if (inSafeMode() || this.getItemProperty(id, "isDisabled") == "true" ||
  7944.         this.getItemProperty(id, "opType") == OP_NEEDS_UPGRADE)
  7945.       return EM_L("");
  7946.  
  7947.     return null;
  7948.   },
  7949.  
  7950.   _rdfGet_installDate: function(item, property) {
  7951.     var id = stripPrefix(item.Value, PREFIX_ITEM_URI);
  7952.     var key = this.getItemProperty(id, "installLocation");
  7953.     if (key && key in StartupCache.entries && id in StartupCache.entries[key] &&
  7954.         StartupCache.entries[key][id] && StartupCache.entries[key][id].mtime)
  7955.       return EM_D(StartupCache.entries[key][id].mtime * 1000000);
  7956.     return null;
  7957.   },
  7958.  
  7959.   /**
  7960.    * Get the em:compatible property (whether or not this item is compatible)
  7961.    */
  7962.   _rdfGet_compatible: function(item, property) {
  7963.     var id = stripPrefix(item.Value, PREFIX_ITEM_URI);
  7964.     var targetAppInfo = this.getTargetApplicationInfo(id, this);
  7965.     if (!targetAppInfo) {
  7966.       // When installing a new addon targetAppInfo does not exist yet
  7967.       if (this.getItemProperty(id, "opType") == OP_NEEDS_INSTALL)
  7968.         return EM_L("true");
  7969.       return EM_L("false");
  7970.     }
  7971.     
  7972.     getVersionChecker();
  7973.     var appVersion = gApp.version;
  7974.  
  7975.     if (targetAppInfo.appID == gApp.ID) {
  7976.       // Check Flock
  7977.       var maxVersion = fixupFlockMaxVersion(targetAppInfo.maxVersion);
  7978.       if ((gVersionChecker.compare(maxVersion, appVersion) < 0) ||
  7979.           (gVersionChecker.compare(appVersion, targetAppInfo.minVersion) < 0)) {
  7980.         return EM_L("false");
  7981.       }
  7982.     }
  7983.     else if (targetAppInfo.id == firefoxAppID) {
  7984.       if ((gVersionChecker.compare(targetAppInfo.maxVersion, firefoxVersion) < 0) ||
  7985.           (gVersionChecker.compare(firefoxVersion, targetAppInfo.minVersion) < 0)) {
  7986.         return EM_L("false");
  7987.       }
  7988.     }
  7989.     return EM_L("true");
  7990.   }, 
  7991.  
  7992.   /**
  7993.    * Get the em:blocklisted property (whether or not this item is blocklisted)
  7994.    */
  7995.   _rdfGet_blocklisted: function(item, property) {
  7996.     Blocklist._ensureBlocklist();
  7997.     var id = stripPrefix(item.Value, PREFIX_ITEM_URI);
  7998.     var blItem = Blocklist.entries[id];
  7999.     if (!blItem)
  8000.       return EM_L("false");
  8001.  
  8002.     getVersionChecker();
  8003.     var version = this.getItemProperty(id, "version");
  8004.     var appVersion = gApp.version;
  8005.     for (var i = 0; i < blItem.length; ++i) {
  8006.       if (gVersionChecker.compare(version, blItem[i].minVersion) < 0  ||
  8007.           gVersionChecker.compare(version, blItem[i].maxVersion) > 0)
  8008.         continue;
  8009.  
  8010.       var blTargetApp = blItem[i].targetApps[gApp.ID];
  8011.       if (blTargetApp) {
  8012.         for (var x = 0; x < blTargetApp.length; ++x) {
  8013.           if (gVersionChecker.compare(appVersion, blTargetApp[x].minVersion) < 0  ||
  8014.               gVersionChecker.compare(appVersion, blTargetApp[x].maxVersion) > 0)
  8015.             continue;
  8016.           return EM_L("true");
  8017.         }
  8018.       }
  8019.  
  8020.       blTargetApp = blItem[i].targetApps[TOOLKIT_ID];
  8021.       if (!blTargetApp)
  8022.         return EM_L("false");
  8023.       for (x = 0; x < blTargetApp.length; ++x) {
  8024.         if (gVersionChecker.compare(gApp.platformVersion, blTargetApp[x].minVersion) < 0  ||
  8025.             gVersionChecker.compare(gApp.platformVersion, blTargetApp[x].maxVersion) > 0)
  8026.           continue;
  8027.         return EM_L("true");
  8028.       }
  8029.     }
  8030.     return EM_L("false");
  8031.   }, 
  8032.   
  8033.   /**
  8034.    * Get the em:state property (represents the current phase of an install).
  8035.    */
  8036.   _rdfGet_state: function(item, property) {
  8037.     var id = item.Value;
  8038.     if (id in this._progressData)
  8039.       return EM_L(this._progressData[id].state);
  8040.     return null;
  8041.   },
  8042.  
  8043.   /**
  8044.    * Get the em:progress property from the _progressData js object. By storing
  8045.    * progress which is updated repeastedly during a download we avoid
  8046.    * repeastedly writing it to the rdf file.
  8047.    */
  8048.   _rdfGet_progress: function(item, property) {
  8049.     var id = item.Value;
  8050.     if (id in this._progressData)
  8051.       return EM_I(this._progressData[id].progress);
  8052.     return null;
  8053.   },
  8054.  
  8055.   /**
  8056.    * Get the em:appManaged property. This prevents extensions from hiding
  8057.    * extensions installed into locations other than the app-global location.
  8058.    */
  8059.   _rdfGet_appManaged: function(item, property) {
  8060.     var id = stripPrefix(item.Value, PREFIX_ITEM_URI);
  8061.     var locationKey = this.getItemProperty(id, "installLocation");
  8062.     if (locationKey != KEY_APP_GLOBAL)
  8063.       return EM_L("false");
  8064.     return null;
  8065.   },
  8066.  
  8067.   /**
  8068.    * Get the em:hidden property. This prevents extensions from hiding
  8069.    * extensions installed into locations other than restricted locations.
  8070.    */
  8071.   _rdfGet_hidden: function(item, property) {
  8072.     var id = stripPrefix(item.Value, PREFIX_ITEM_URI);
  8073.     var installLocation = InstallLocations.get(this.getInstallLocationKey(id));
  8074.     if (!installLocation || !installLocation.restricted)
  8075.       return EM_L("false");
  8076.     return null;
  8077.   },
  8078.  
  8079.   /**
  8080.    * Get the em:locked property. This prevents extensions from locking
  8081.    * extensions installed into locations other than restricted locations.
  8082.    */
  8083.   _rdfGet_locked: function(item, property) {
  8084.     var id = stripPrefix(item.Value, PREFIX_ITEM_URI);
  8085.     var installLocation = InstallLocations.get(this.getInstallLocationKey(id));
  8086.     if (!installLocation || !installLocation.restricted)
  8087.       return EM_L("false");
  8088.     return null;
  8089.   },
  8090.  
  8091.   /** 
  8092.    * Gets the em:availableUpdateURL - the URL to an XPI update package, if
  8093.    * present, or a literal string "none" if there is no update XPI URL.
  8094.    * XXXrstrong we return none due to bug 331689 
  8095.    */
  8096.   _rdfGet_availableUpdateURL: function(item, property) {
  8097.     var value = this._inner.GetTarget(item, property, true);
  8098.     if (!value) 
  8099.       return EM_L("none");
  8100.     return value;
  8101.   },
  8102.  
  8103.   /**
  8104.    * Get the em:satisfiesDependencies property - literal string "false" for
  8105.    * dependencies not satisfied (e.g. dependency disabled, incorrect version,
  8106.    * not installed etc.), and literal string "true" for dependencies satisfied.
  8107.    */
  8108.   _rdfGet_satisfiesDependencies: function(item, property) {
  8109.     var id = stripPrefix(item.Value, PREFIX_ITEM_URI);
  8110.     if (this.satisfiesDependencies(id))
  8111.       return EM_L("true");
  8112.     return EM_L("false");
  8113.   },
  8114.   
  8115.   /**
  8116.    * Get the em:opType property (controls widget state for the EM UI)
  8117.    * from the Startup Cache (e.g. extensions.cache)
  8118.    * XXXrstrong we return none for OP_NONE due to bug 331689 
  8119.    */
  8120.   _rdfGet_opType: function(item, property) {
  8121.     var id = stripPrefix(item.Value, PREFIX_ITEM_URI);
  8122.     var key = this.getItemProperty(id, "installLocation");
  8123.     if (key in StartupCache.entries && id in StartupCache.entries[key] &&
  8124.         StartupCache.entries[key][id] && StartupCache.entries[key][id].op != OP_NONE)
  8125.       return EM_L(StartupCache.entries[key][id].op);
  8126.     return EM_L("none");
  8127.   },
  8128.  
  8129.   /**
  8130.    * Gets a localizable property. Install Manifests are generally only in one 
  8131.    * language, however an item can customize by providing localized prefs in 
  8132.    * the form:
  8133.    *
  8134.    *    extensions.{GUID}.[name|description|creator|homepageURL]
  8135.    *
  8136.    * to specify localized text for each of these properties.
  8137.    */
  8138.   _getLocalizablePropertyValue: function(item, property) {
  8139.     // These are localizable properties that a language pack supplied by the 
  8140.     // Extension may override.          
  8141.     var prefName = PREF_EM_EXTENSION_FORMAT.replace(/%UUID%/, 
  8142.                     stripPrefix(item.Value, PREFIX_ITEM_URI)) + 
  8143.                     stripPrefix(property.Value, PREFIX_NS_EM);
  8144.     try {
  8145.       var value = gPref.getComplexValue(prefName, 
  8146.                                         Components.interfaces.nsIPrefLocalizedString);
  8147.       if (value.data) 
  8148.         return EM_L(value.data);
  8149.     }
  8150.     catch (e) {
  8151.     }
  8152.     return null;
  8153.   },
  8154.   
  8155.   /**
  8156.    * Get the em:name property (name of the item)
  8157.    */
  8158.   _rdfGet_name: function(item, property) {
  8159.     return this._getLocalizablePropertyValue(item, property);
  8160.   },
  8161.   
  8162.   /**
  8163.    * Get the em:description property (description of the item)
  8164.    */
  8165.   _rdfGet_description: function(item, property) {
  8166.     return this._getLocalizablePropertyValue(item, property);
  8167.   },
  8168.   
  8169.   /**
  8170.    * Get the em:creator property (creator of the item)
  8171.    */
  8172.   _rdfGet_creator: function(item, property) { 
  8173.     return this._getLocalizablePropertyValue(item, property);
  8174.   },
  8175.   
  8176.   /**
  8177.    * Get the em:homepageURL property (homepage URL of the item)
  8178.    */
  8179.   _rdfGet_homepageURL: function(item, property) {
  8180.     return this._getLocalizablePropertyValue(item, property);
  8181.   },
  8182.  
  8183.   /**
  8184.    * Get the em:isDisabled property. This will be true if the item has a
  8185.    * appDisabled or a userDisabled property that is true or OP_NEEDS_ENABLE.
  8186.    */
  8187.   _rdfGet_isDisabled: function(item, property) {
  8188.     var id = stripPrefix(item.Value, PREFIX_ITEM_URI);
  8189.     if (this.getItemProperty(id, "userDisabled") == "true" ||
  8190.         this.getItemProperty(id, "appDisabled") == "true" ||
  8191.         this.getItemProperty(id, "userDisabled") == OP_NEEDS_ENABLE ||
  8192.         this.getItemProperty(id, "appDisabled") == OP_NEEDS_ENABLE)
  8193.       return EM_L("true");
  8194.     return EM_L("false");
  8195.   },
  8196.  
  8197.   _rdfGet_addonID: function(item, property) {
  8198.     var id = this._inner.GetTarget(item, EM_R("downloadURL"), true) ? item.Value :
  8199.                                                                       stripPrefix(item.Value, PREFIX_ITEM_URI);
  8200.     return EM_L(id);
  8201.   },
  8202.  
  8203.   /**
  8204.    * Get the em:updateable property - this specifies whether the item is
  8205.    * allowed to be updated
  8206.    */
  8207.   _rdfGet_updateable: function(item, property) {
  8208.     var id = stripPrefix(item.Value, PREFIX_ITEM_URI);
  8209.     var opType = this.getItemProperty(id, "opType");
  8210.     if (opType == OP_NEEDS_INSTALL || opType == OP_NEEDS_UNINSTALL ||
  8211.         opType == OP_NEEDS_UPGRADE ||
  8212.         this.getItemProperty(id, "appManaged") == "true")
  8213.       return EM_L("false");
  8214.  
  8215.     if (getPref("getBoolPref", (PREF_EM_ITEM_UPDATE_ENABLED.replace(/%UUID%/, id), false)) == true)
  8216.       return EM_L("false");
  8217.  
  8218.     var installLocation = InstallLocations.get(this.getInstallLocationKey(id));
  8219.     if (!installLocation || !installLocation.canAccess)
  8220.       return EM_L("false");
  8221.  
  8222.     return EM_L("true");
  8223.   },
  8224.  
  8225.   /**
  8226.    * See nsIRDFDataSource.idl
  8227.    */
  8228.   GetTarget: function(source, property, truthValue) {
  8229.     if (!source)
  8230.       return null;
  8231.       
  8232.     var target = null;
  8233.     var getter = "_rdfGet_" + stripPrefix(property.Value, PREFIX_NS_EM);
  8234.     if (getter in this)
  8235.       target = this[getter](source, property);
  8236.  
  8237.     return target || this._inner.GetTarget(source, property, truthValue);
  8238.   },
  8239.   
  8240.   /**
  8241.    * Gets an enumeration of values of a localizable property. Install Manifests
  8242.    * are generally only in one language, however an item can customize by 
  8243.    * providing localized prefs in the form:
  8244.    *
  8245.    *    extensions.{GUID}.[contributor].1
  8246.    *    extensions.{GUID}.[contributor].2
  8247.    *    extensions.{GUID}.[contributor].3
  8248.    *    ...
  8249.    *
  8250.    * to specify localized text for each of these properties.
  8251.    */
  8252.   _getLocalizablePropertyValues: function(item, property) {
  8253.     // These are localizable properties that a language pack supplied by the 
  8254.     // Extension may override.          
  8255.     var values = [];
  8256.     var prefName = PREF_EM_EXTENSION_FORMAT.replace(/%UUID%/, 
  8257.                     stripPrefix(item.Value, PREFIX_ITEM_URI)) + 
  8258.                     stripPrefix(property.Value, PREFIX_NS_EM);
  8259.     var i = 0;
  8260.     while (true) {
  8261.       try {
  8262.         var value = gPref.getComplexValue(prefName + "." + ++i, 
  8263.                                           Components.interfaces.nsIPrefLocalizedString);
  8264.         if (value.data) 
  8265.           values.push(EM_L(value.data));
  8266.       }
  8267.       catch (e) {
  8268.         try {
  8269.           var value = gPref.getComplexValue(prefName, 
  8270.                                             Components.interfaces.nsIPrefLocalizedString);
  8271.           if (value.data) 
  8272.             values.push(EM_L(value.data));
  8273.         }
  8274.         catch (e) {
  8275.         }
  8276.         break;
  8277.       }
  8278.     }
  8279.     return values.length > 0 ? values : null;
  8280.   },
  8281.  
  8282.   /**
  8283.    * Get the em:developer property (developers of the extension)
  8284.    */
  8285.   _rdfGets_developer: function(item, property) {
  8286.     return this._getLocalizablePropertyValues(item, property); 
  8287.   },
  8288.  
  8289.   /**
  8290.    * Get the em:translator property (translators of the extension)
  8291.    */
  8292.   _rdfGets_translator: function(item, property) {
  8293.     return this._getLocalizablePropertyValues(item, property); 
  8294.   },
  8295.   
  8296.   /**
  8297.    * Get the em:contributor property (contributors to the extension)
  8298.    */
  8299.   _rdfGets_contributor: function(item, property) {
  8300.     return this._getLocalizablePropertyValues(item, property); 
  8301.   },
  8302.   
  8303.   /**
  8304.    * See nsIRDFDataSource.idl
  8305.    */
  8306.   GetTargets: function(source, property, truthValue) {
  8307.     if (!source)
  8308.       return null;
  8309.       
  8310.     var ary = null;
  8311.     var propertyName = stripPrefix(property.Value, PREFIX_NS_EM);
  8312.     var getter = "_rdfGets_" + propertyName;
  8313.     if (getter in this)
  8314.       ary = this[getter](source, property);
  8315.     else {
  8316.       // The template builder calls GetTargets when single value properties
  8317.       // are used in a triple.
  8318.       getter = "_rdfGet_" + propertyName;
  8319.       if (getter in this)
  8320.         ary = [ this[getter](source, property) ];
  8321.     }
  8322.     
  8323.     return ary ? new ArrayEnumerator(ary) 
  8324.                : this._inner.GetTargets(source, property, truthValue);
  8325.   },
  8326.   
  8327.   Assert: function(source, property, target, truthValue) {
  8328.     this._inner.Assert(source, property, target, truthValue);
  8329.   },
  8330.   
  8331.   Unassert: function(source, property, target) {
  8332.     this._inner.Unassert(source, property, target);
  8333.   },
  8334.   
  8335.   Change: function(source, property, oldTarget, newTarget) {
  8336.     this._inner.Change(source, property, oldTarget, newTarget);
  8337.   },
  8338.  
  8339.   Move: function(oldSource, newSource, property, target) {
  8340.     this._inner.Move(oldSource, newSource, property, target);
  8341.   },
  8342.   
  8343.   HasAssertion: function(source, property, target, truthValue) {
  8344.     if (!source || !property || !target)
  8345.       return false;
  8346.  
  8347.     var getter = "_rdfGet_" + stripPrefix(property.Value, PREFIX_NS_EM);
  8348.     if (getter in this)
  8349.       return this[getter](source, property) == target;
  8350.     return this._inner.HasAssertion(source, property, target, truthValue);
  8351.   },
  8352.   
  8353.   _observers: [],
  8354.   AddObserver: function(observer) {
  8355.     for (var i = 0; i < this._observers.length; ++i) {
  8356.       if (this._observers[i] == observer) 
  8357.         return;
  8358.     }
  8359.     this._observers.push(observer);
  8360.     this._inner.AddObserver(observer);
  8361.   },
  8362.   
  8363.   RemoveObserver: function(observer) {
  8364.     for (var i = 0; i < this._observers.length; ++i) {
  8365.       if (this._observers[i] == observer) 
  8366.         this._observers.splice(i, 1);
  8367.     }
  8368.     this._inner.RemoveObserver(observer);
  8369.   },
  8370.   
  8371.   ArcLabelsIn: function(node) {
  8372.     return this._inner.ArcLabelsIn(node);
  8373.   },
  8374.   
  8375.   ArcLabelsOut: function(source) {
  8376.     return this._inner.ArcLabelsOut(source);
  8377.   },
  8378.   
  8379.   GetAllResources: function() {
  8380.     return this._inner.GetAllResources();
  8381.   },
  8382.   
  8383.   IsCommandEnabled: function(sources, command, arguments) {
  8384.     return this._inner.IsCommandEnabled(sources, command, arguments);
  8385.   },
  8386.   
  8387.   DoCommand: function(sources, command, arguments) {
  8388.     this._inner.DoCommand(sources, command, arguments);
  8389.   },
  8390.   
  8391.   GetAllCmds: function(source) {
  8392.     return this._inner.GetAllCmds(source);
  8393.   },
  8394.   
  8395.   hasArcIn: function(node, arc) {
  8396.     return this._inner.hasArcIn(node, arc);
  8397.   },
  8398.   
  8399.   hasArcOut: function(source, arc) {
  8400.     return this._inner.hasArcOut(source, arc);
  8401.   },
  8402.   
  8403.   beginUpdateBatch: function() {
  8404.     return this._inner.beginUpdateBatch();
  8405.   },
  8406.   
  8407.   endUpdateBatch: function() {
  8408.     return this._inner.endUpdateBatch();
  8409.   },
  8410.   
  8411.   /**
  8412.    * See nsIRDFRemoteDataSource.idl
  8413.    */
  8414.   get loaded() {
  8415.     throw Components.results.NS_ERROR_NOT_IMPLEMENTED;
  8416.   },
  8417.   
  8418.   Init: function(uri) {
  8419.   },
  8420.   
  8421.   Refresh: function(blocking) {
  8422.   },
  8423.   
  8424.   Flush: function() {
  8425.     if (this._inner instanceof Components.interfaces.nsIRDFRemoteDataSource)
  8426.       this._inner.Flush();
  8427.   },
  8428.   
  8429.   FlushTo: function(uri) {
  8430.   },
  8431.   
  8432.   /**
  8433.    * See nsISupports.idl
  8434.    */
  8435.   QueryInterface: function(iid) {
  8436.     if (!iid.equals(Components.interfaces.nsIRDFDataSource) &&
  8437.         !iid.equals(Components.interfaces.nsIRDFRemoteDataSource) && 
  8438.         !iid.equals(Components.interfaces.nsISupports))
  8439.       throw Components.results.NS_ERROR_NO_INTERFACE;
  8440.     return this;
  8441.   }
  8442. };
  8443.  
  8444. function UpdateItem () {
  8445. }
  8446. UpdateItem.prototype = {
  8447.   /**
  8448.    * See nsIUpdateService.idl
  8449.    */
  8450.   init: function(id, version, installLocationKey, minAppVersion, maxAppVersion,
  8451.                  name, downloadURL, xpiHash, iconURL, updateURL, type) {
  8452.     this._id                  = id;
  8453.     this._version             = version;
  8454.     this._installLocationKey  = installLocationKey;
  8455.     this._minAppVersion       = minAppVersion;
  8456.     this._maxAppVersion       = maxAppVersion;
  8457.     this._name                = name;
  8458.     this._downloadURL         = downloadURL;
  8459.     this._xpiHash             = xpiHash;
  8460.     this._iconURL             = iconURL;
  8461.     this._updateURL           = updateURL;
  8462.     this._type                = type;
  8463.   },
  8464.   
  8465.   /**
  8466.    * See nsIUpdateService.idl
  8467.    */
  8468.   get id()                { return this._id;                },
  8469.   get version()           { return this._version;           },
  8470.   get installLocationKey(){ return this._installLocationKey;},
  8471.   get minAppVersion()     { return this._minAppVersion;     },
  8472.   get maxAppVersion()     { return this._maxAppVersion;     },
  8473.   get name()              { return this._name;              },
  8474.   get xpiURL()            { return this._downloadURL;       },
  8475.   get xpiHash()           { return this._xpiHash;           },
  8476.   get iconURL()           { return this._iconURL            },
  8477.   get updateRDF()         { return this._updateURL;         },
  8478.   get type()              { return this._type;              },
  8479.  
  8480.   /**
  8481.    * See nsIUpdateService.idl
  8482.    */
  8483.   get objectSource() {
  8484.     return { id                 : this._id, 
  8485.              version            : this._version, 
  8486.              installLocationKey : this._installLocationKey,
  8487.              minAppVersion      : this._minAppVersion,
  8488.              maxAppVersion      : this._maxAppVersion,
  8489.              name               : this._name, 
  8490.              xpiURL             : this._downloadURL, 
  8491.              xpiHash            : this._xpiHash,
  8492.              iconURL            : this._iconURL, 
  8493.              updateRDF          : this._updateURL,
  8494.              type               : this._type 
  8495.            }.toSource();
  8496.   },
  8497.   
  8498.   /**
  8499.    * See nsISupports.idl
  8500.    */
  8501.   QueryInterface: function(iid) {
  8502.     if (!iid.equals(Components.interfaces.nsIUpdateItem) &&
  8503.         !iid.equals(Components.interfaces.nsISupports))
  8504.       throw Components.results.NS_ERROR_NO_INTERFACE;
  8505.     return this;
  8506.   }
  8507. };
  8508.  
  8509. var gModule = {
  8510.   registerSelf: function(componentManager, fileSpec, location, type) {
  8511.     componentManager = componentManager.QueryInterface(Components.interfaces.nsIComponentRegistrar);
  8512.     
  8513.     for (var key in this._objects) {
  8514.       var obj = this._objects[key];
  8515.       componentManager.registerFactoryLocation(obj.CID, obj.className, obj.contractID,
  8516.                                                fileSpec, location, type);
  8517.     }
  8518.  
  8519.     // Make the Extension Manager a startup observer
  8520.     var categoryManager = Components.classes["@mozilla.org/categorymanager;1"]
  8521.                                     .getService(Components.interfaces.nsICategoryManager);
  8522.     categoryManager.addCategoryEntry("app-startup", this._objects.manager.className,
  8523.                                      "service," + this._objects.manager.contractID, 
  8524.                                      true, true);
  8525.   },
  8526.   
  8527.   getClassObject: function(componentManager, cid, iid) {
  8528.     if (!iid.equals(Components.interfaces.nsIFactory))
  8529.       throw Components.results.NS_ERROR_NOT_IMPLEMENTED;
  8530.  
  8531.     for (var key in this._objects) {
  8532.       if (cid.equals(this._objects[key].CID))
  8533.         return this._objects[key].factory;
  8534.     }
  8535.     
  8536.     throw Components.results.NS_ERROR_NO_INTERFACE;
  8537.   },
  8538.   
  8539.   _makeFactory: #1= function(ctor) {
  8540.     return { 
  8541.              createInstance: function (outer, iid) {
  8542.                if (outer != null)
  8543.                  throw Components.results.NS_ERROR_NO_AGGREGATION;
  8544.                return (new ctor()).QueryInterface(iid);
  8545.              } 
  8546.            };  
  8547.   },
  8548.   
  8549.   _objects: {
  8550.     manager: { CID        : ExtensionManager.prototype.classID,
  8551.                contractID : ExtensionManager.prototype.contractID,
  8552.                className  : ExtensionManager.prototype.classDescription,
  8553.                factory    : #1#(ExtensionManager)
  8554.              },
  8555.     item:    { CID        : Components.ID("{F3294B1C-89F4-46F8-98A0-44E1EAE92518}"),
  8556.                contractID : "@mozilla.org/updates/item;1",
  8557.                className  : "Update Item",
  8558.                factory    : #1#(UpdateItem)
  8559.              }
  8560.    },
  8561.  
  8562.   canUnload: function(componentManager) {
  8563.     return true;
  8564.   }
  8565. };
  8566.  
  8567. function NSGetModule(compMgr, fileSpec) {
  8568.   return gModule;
  8569. }
  8570.  
  8571.